Notifications
Clear all

[Closed] Value precision from 3dsmax

Is there anyway to adjust the precision in the values? For example, in the view for a vert precision i see.

[4703.8877, -4888.16553, 1371.12756]

but if i do meshop.getVert $ 1, in the listner i get

[-4703.89,-4888.17,1371.13]

is it just a listener display issue that causes the precision loss, or is it internally as well?

Basically i’m trying to bake heights, and i need all the precision i can get.

3 Replies

2020-01-14_12-54-26_1
It’s number in mxs , for float value , only 6-digit exact value

a = 4703.8877
4703.89
b = a – 4703
0.887695
Just a display issue, don’t be worry.

Awesome. Thanks man.