Curve.startpoint in meter

Hi,

I was wondering if the Curve.StartPoint could be more easily changed to meters.

thanks.

Hi, look at the dictionary, all these nodes should potentially meet your expectations

Sincerely
christian.stan

All these nodes will not do wat i want, they all place point on a curve by different conditions.

Wat i want is to convert the x,y,z coordinates from mm to m → divide with 1000.

thanks.

1 Like

Geometry.Scale, then extract the X, Y, and Z components.

Or you could take the X, Y and Z values, join them into a list, and divide that list by 1000.

To simplify the layout you could use a codeblock instead of nodes too, something like [pnt.X, pnt.Y, pnt.Z] / 1000;

You could also change the project units before launching Dynamo. :slight_smile:

1 Like

Geometry.Scale that’s the one