Package com.aspose.threed
Class SweptAreaSolid
- java.lang.Object
-
- com.aspose.threed.A3DObject
-
- com.aspose.threed.SceneObject
-
- com.aspose.threed.Entity
-
- com.aspose.threed.SweptAreaSolid
-
- All Implemented Interfaces:
IMeshConvertible
,INamedObject
public class SweptAreaSolid extends Entity implements IMeshConvertible
ASweptAreaSolid
constructs a geometry by sweeping a profile along a directrix.
-
-
Field Summary
-
Fields inherited from class com.aspose.threed.A3DObject
name, properties
-
-
Constructor Summary
Constructors Constructor Description SweptAreaSolid()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Curve
getDirectrix()
The directrix that the swept area sweeping along with.EndPoint
getEndPoint()
The end point of the directrix.Profile
getShape()
The base profile to construct the geometry.EndPoint
getStartPoint()
The start point of the directrix.void
setDirectrix(Curve value)
The directrix that the swept area sweeping along with.void
setEndPoint(EndPoint value)
The end point of the directrix.void
setShape(Profile value)
The base profile to construct the geometry.void
setStartPoint(EndPoint value)
The start point of the directrix.Mesh
toMesh()
Convert current object to mesh-
Methods inherited from class com.aspose.threed.Entity
getBoundingBox, getEntityRendererKey, 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
-
getShape
public Profile getShape()
The base profile to construct the geometry.
-
setShape
public void setShape(Profile value)
The base profile to construct the geometry.- Parameters:
value
- New value
-
getDirectrix
public Curve getDirectrix()
The directrix that the swept area sweeping along with.
-
setDirectrix
public void setDirectrix(Curve value)
The directrix that the swept area sweeping along with.- Parameters:
value
- New value
-
getStartPoint
public EndPoint getStartPoint()
The start point of the directrix.
-
setStartPoint
public void setStartPoint(EndPoint value)
The start point of the directrix.- Parameters:
value
- New value
-
getEndPoint
public EndPoint getEndPoint()
The end point of the directrix.
-
setEndPoint
public void setEndPoint(EndPoint value)
The end point of the directrix.- Parameters:
value
- New value
-
toMesh
public Mesh toMesh()
Convert current object to mesh- Specified by:
toMesh
in interfaceIMeshConvertible
- Returns:
- The mesh.
-
-