The Area properties of a sketch profile or planar surface.
| Name | Description |
| 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(). |
| getCentroidMomentsOfInertia |
Method that returns the moments of inertia about the centroid. Unit for returned values is kg*cm^2. |
| getMomentsOfInertia |
Method that, for a sketch, returns the moments of inertia about the sketch origin. For a planar face, this method returns the moments about the world coordinate system origin. Unit for returned values is kg*cm^2. |
| getPrincipalAxes |
Method that returns the principal axes. |
| getPrincipalMomentsOfInertia |
Method that returns the moments of inertia about the principal axes. Unit for returned values is kg*cm^2. |
| getRadiusOfGyration |
Method that returns the radius of gyration about the principal axes. Unit for returned values is cm. |
| Name | Description |
| accuracy | Returns the accuracy that was used for the calculation. |
| area | Gets the area in the square centimeters. |
| centroid | Gets the centroid where the units are centimeters. The Location is relative to the sketch origin for a profile or relative to the world coordinate system for a planar face. |
| isValid | Indicates if this object is still valid, i.e. hasn't been deleted or some other action done to invalidate the reference. |
| objectType | This property is supported by all objects in the API and returns a string that contains the full name (namespace::objecttype) describing the type of the object. It's often useful to use this in combination with the classType method to see if an object is a certain type. For example: if obj.objectType == adsk.core.Point3D.classType(): |
| perimeter | Gets the perimeter in centimeters. The perimeter is the sum of the length of all the curves or edges of the profile or planar surface |
| rotationToPrincipal | Gets the angle of rotation of the principal axes. |
| Name | Description |
| API Sample for AreaProperties | Demonstrates how to use AreaProperties |
| Patch Feature API Sample | Demonstrates creating a new patch feature. |