asArray |
Get coordinate data of the point. |
asVector |
Defines a vector using the coordinates of the point. |
classType |
Static function that all classes support that returns the type of the class as a string. The returned string matches the string returned by the objectType property. For example if you have a reference to an object and you want to check if it's a SketchLine you can use myObject.objectType == fusion.SketchLine.classType(). |
copy |
Creates and returns a copy of this point object. |
create |
Creates a transient 3D point object. |
distanceTo |
Returns the distance from this point to another point. |
getData |
Gets the data defining the point. |
isEqualTo |
Checks to see if this point and another point are equal (have identical coordinates). The comparison is done within the modeling tolerance which can be found with the Application.pointTolerance property. If you want to compare two points with any other tolerance you can use the isEqualToByTolerance method. |
isEqualToByTolerance |
Checks to see if this point and another point are equal within the specified tolerance. |
set |
Sets the data defining the point. |
setWithArray |
Sets the coordinates of the point using an array as input. |
transformBy |
Transforms the point using the provided matrix. |
translateBy |
Translates the point using the provided vector. |
vectorTo |
Returns a vector from this point to another point. |