Thanks for your interest. I will explain what I need.
A simple primitive is created and then cloned.
The clone object is randomly scaled and I want to find out
what scale the X,Y and Z axis lengths are now in the cloned object.
i.e. - The scale of the original object is 10000,10000,10000
but the new cloned object has been randomly scaled in
any of the 3 axis directions:
make object cube 1,50
scale object 1,10000,10000,10000
clone object 2,1
scale object 2,rnd(5000),rnd(5000),rnd(5000)
Now I need a formula to calculate what values have been chosen by
the random choice used for the 3 axis lengths.
The "object size" command for each axis returns a different value
than the scale command.
e.g. - scale object 2,rnd(5000),rnd(5000),rnd(5000)
(Let`s say X=2500, Y=1500 and Z=3500)
Now when the "object size" is used to get back length data
from any axis, the reported integer data is not the same
as the scaled data.
e.g. - sc1=(object size x (2,1)
sc2=(object size y (2,1)
sc3=(object size z (2,1)
Now the size data reported back is:
sc1=194 (X)
sc2=116 (Y)
sc3=272 (Z)
when the true scale size is X=2500, Y=1500 and Z=3500!!
So can somebody please supply a formula that can return the
true scale data as created by the "scale object" command?
Thanks for any help you can give.
The Creator