XYZ points

How does one convert Dynamo XYZ points into Revit XYZ points??

I’m using the View.ViewPortBoxCentre plus a Py node as shown below. This definition used to work on previous Dynamo version but not in 1.2?


1 Like

No idea what I am looking at here. The Py node I’m using was produced by someone on the forum here and as I said before it worked on Dynamo 0.9

thanks

GeometryObjects

A Revit XYZ is not a GeometryObject (unfortunately, there is such a thing as a Revit Point, which is handled correctly by ToProtoType()) and there is more than one way to convert an XYZ (i.e. convert it to a Vector or Point):

point = xyz.ToPoint()
vector = xyz.ToVector()
xyz = pointOrVector.ToXyz()
4 Likes

so to finish off @Organon answer you need to change the OUT line to this:

OUT = [x.ToXyz() for x in IN[0]] 
4 Likes

thank you very much guys

Hi @Renzoj14

Just a request try to reply sooner next time. Thanks :slight_smile:

1 Like

ok :slight_smile: