Package com.aspose.threed
Class EllipseShape
- java.lang.Object
-
public class EllipseShape extends ParameterizedProfile
IFC compatible ellipse shape that defined by parameters. The center position of the profile is in the center of the bounding box.
-
-
Field Summary
-
Fields inherited from class com.aspose.threed.A3DObject
name, properties
-
-
Constructor Summary
Constructors Constructor Description EllipseShape()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Vector2
getExtent()
Gets the extent in x and y dimension.double
getSemiAxis1()
Gets the first radius of the ellipse that measured in the direction of x axis.double
getSemiAxis2()
Gets the second radius of the ellipse that measured in the direction of y axis.void
setSemiAxis1(double value)
Sets the first radius of the ellipse that measured in the direction of x axis.void
setSemiAxis2(double value)
Sets the second radius of the ellipse that measured in the direction of y axis.-
Methods inherited from class com.aspose.threed.Profile
getEntityRendererKey
-
Methods inherited from class com.aspose.threed.Entity
getBoundingBox, getExcluded, getParentNode, getParentNodes, setExcluded, setParentNode
-
Methods inherited from class com.aspose.threed.SceneObject
getScene
-
Methods inherited from class com.aspose.threed.A3DObject
findProperty, getName, getProperties, getProperty, removeProperty, removeProperty, setName, setProperty
-
-
-
-
Method Detail
-
getSemiAxis1
public double getSemiAxis1()
Gets the first radius of the ellipse that measured in the direction of x axis.
-
setSemiAxis1
public void setSemiAxis1(double value)
Sets the first radius of the ellipse that measured in the direction of x axis.- Parameters:
value
- New value
-
getSemiAxis2
public double getSemiAxis2()
Gets the second radius of the ellipse that measured in the direction of y axis.
-
setSemiAxis2
public void setSemiAxis2(double value)
Sets the second radius of the ellipse that measured in the direction of y axis.- Parameters:
value
- New value
-
getExtent
public Vector2 getExtent()
Gets the extent in x and y dimension.- Specified by:
getExtent
in classParameterizedProfile
-
-