Package com.aspose.threed
Class Curve
- java.lang.Object
-
- com.aspose.threed.A3DObject
-
- com.aspose.threed.SceneObject
-
- com.aspose.threed.Entity
-
- com.aspose.threed.Curve
-
- All Implemented Interfaces:
INamedObject
- Direct Known Subclasses:
Circle
,CompositeCurve
,Ellipse
,Line
,NurbsCurve
,TransformedCurve
,TrimmedCurve
public abstract class Curve extends Entity
The base class of all curve implementations.
-
-
Field Summary
-
Fields inherited from class com.aspose.threed.A3DObject
name, properties
-
-
Constructor Summary
Constructors Constructor Description Curve()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Vector3
getColor()
Gets the color of the line, default value is white(1, 1, 1)EntityRendererKey
getEntityRendererKey()
Gets the key of the entity renderer registered in the renderervoid
setColor(Vector3 value)
Sets the color of the line, default value is white(1, 1, 1)-
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
-
getColor
public Vector3 getColor()
Gets the color of the line, default value is white(1, 1, 1)
-
setColor
public void setColor(Vector3 value)
Sets the color of the line, default value is white(1, 1, 1)- Parameters:
value
- New value
-
getEntityRendererKey
public EntityRendererKey getEntityRendererKey()
Gets the key of the entity renderer registered in the renderer- Overrides:
getEntityRendererKey
in classEntity
-
-