Uses of Class
com.aspose.threed.Entity
-
-
Uses of Entity in com.aspose.threed
Subclasses of Entity in com.aspose.threed Modifier and Type Class Description class
Box
Box.class
Camera
The camera describes the eye point of the viewer looking at the scene.class
Cylinder
Parameterized Cylinder.class
Frustum
class
Geometry
class
Light
The light illuminates the scene.class
Line
A line is a path defined by a set of points withGeometry.getControlPoints()
, and connected byLine.getIndices()
, which means it can also be a set of connected line segments.class
LinearExtrusion
Linear extrusion takes a 2D shape as input and extends the shape in the 3rd dimension.class
ManualEntity
A bridge from Entity to custom renderable entity Use this class to simplify the construction of rendering tasks and resource management.class
Mesh
A mesh is made of many n-sided polygons.class
NurbsCurve
NURBS curve is a curve represented by NURBS(Non-uniform rational basis spline), A NURBS curve is defined by itsNurbsCurve.getOrder()
, a set of weightedGeometry.getControlPoints()
and aNurbsCurve.getKnotVectors()
The w component in control point is used as control point's weight, whatever it is aCurveDimension.TWO_DIMENSIONAL
orCurveDimension.THREE_DIMENSIONAL
class
NurbsSurface
NurbsSurface
is a surface represented by NURBS(Non-uniform rational basis spline), ANurbsSurface
is defined by twoNurbsDirection
NurbsSurface.getU()
andNurbsSurface.getV()
.class
Patch
APatch
is a parametric modeling surface, similar toNurbsSurface
, it's also defined by twoPatchDirection
, thePatch.getU()
andPatch.getV()
.class
Plane
Parameterized plane.class
Primitive
Base class for all primitivesclass
RectangularTorus
Parameterized rectangular torus.class
Shape
The shape describes the deformation on a set of control points, which is similar to the cluster deformer in Maya.class
Skeleton
TheSkeleton
is mainly used by CAD software to help designer to manipulate the transformation of skeletal structure, it's usually useless outside the CAD softwares.class
Sphere
Parameterized sphere.class
Torus
Parameterized torus.class
TriMesh
A TriMesh contains raw data that can be used by GPU directly.Methods in com.aspose.threed that return Entity Modifier and Type Method Description Entity
Node. getEntity()
Gets the first entity attached to this node, if sets, will clear other entities.Methods in com.aspose.threed that return types with arguments of type Entity Modifier and Type Method Description java.util.List<Entity>
Node. getEntities()
Gets all node entities.Methods in com.aspose.threed with parameters of type Entity Modifier and Type Method Description void
Node. addEntity(Entity entity)
Add an entity to the node.Node
Node. createChildNode(Entity entity)
Create a new child node with given entity attachedNode
Node. createChildNode(java.lang.String nodeName, Entity entity)
Create a new child node with given node namevoid
Node. setEntity(Entity value)
Sets the first entity attached to this node, if sets, will clear other entities.Constructors in com.aspose.threed with parameters of type Entity Constructor Description Node(java.lang.String name, Entity entity)
Initializes a new instance of theNode
class.
-