Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 01/05/2003 at 10:28, xxxxxxxx wrote:
User Information: Cinema 4D Version: 8.100 Platform: Mac ; Language(s) : C.O.F.F.E.E ;
--------- What is the maximum value for the position coordinate of an object (for any axis)? Is it +/-9000000202358128640? I typed in 999999999999999999999999999999999 into the Coordinates manage and it "snapped" back into 9000000202358128639. So, I assumed it was the limit. Am I correct? And what it the maximum value a COFFEE var will support? I need this for a new plug-in I'm doing.
Rui Batista
On 01/05/2003 at 11:04, xxxxxxxx wrote:
Please refer to the C++ SDK's contants:
#define MAXREAL ( 9.0e18) #define MINREAL (-9.0e18)
What you're seeing is the closest representable value.
On 01/05/2003 at 11:46, xxxxxxxx wrote:
Thank you very much, Mikael