I am trying to to extract Z values from the start and end vertex of 3d polyline in Autocad to an attribute. Should be fairly simple but all the trasformers i have tried failed? Thank you
Page 1 / 1
I will need the start and end (2 total attributes). thank you
Hi,
The CoordinateExtractor transformer can be used to extract coordinates of a vertex at specified index.
Use two CoordinateExtractors in a series; one for start (index = 0), another for end (index = -1).
Takashi