The POINTARRAY function is useful for isolating the individual X- or Y-coordinate of a point. For more information, see the Using TRANSFORMCOORDINATES and accessing individual coordinates subsection of the Transforming from one coordinate system to another section in Chapter 32: Fixturing.
Specifies the array of X-coordinates.
Specifies the array of Y-coordinates.
| 1. |
The following example returns an array of point objects with the coordinates ((10, 11), (20, 21), (30,31)). POINTARRAY([10,
20, 30], [11, 21, 31])
|
Specifies the array of fixture objects. Note that the angle of the fixtures are ignored.
| 1. |
The following example returns an array of point objects that correspond to the origins of the fixtures created by the BlobAnalysis step.
POINTARRAY(SELECT(BlobAnalysis.BlobFound,
Item.Fixture))
|