Creates a point by interpreting the 3 coordinates relative to the coordinate Frame f.
point_ ( x As Number, _
y As Number, _
z As Number, _
f As Frame ) As Point
Argument | Type | Description |
---|---|---|
x | Number | The x coordinate of the point in Frame f. |
y | Number | The y coordinate of the point in Frame f. |
z | Number | The z coordinate of the point in Frame f. |
f | Frame | The coordinate frame in which the coordinates are to be defined. |
Intent >point_(1,0,0,translateFrame(localFrame, Vector(5,5,0)))
--> Point_(6.0, 5.0, 0.0, WorldFrame())