Modifier and Type | Class and 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 with
Geometry.getControlPoints() , and connected by Line.getIndices() ,
which means it can also be a set of connected line segments. |
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 its
NurbsCurve.getOrder() , a set of weighted Geometry.getControlPoints() and a NurbsCurve.getKnotVectors()
The w component in control point is used as control point's weight, whatever it is a CurveDimension.TWO_DIMENSIONAL or CurveDimension.THREE_DIMENSIONAL |
class |
NurbsSurface
NurbsSurface is a surface represented by NURBS(Non-uniform rational basis spline),
A NurbsSurface is defined by two NurbsDirection NurbsSurface.getU() and NurbsSurface.getV() . |
class |
Patch
A
Patch is a parametric modeling surface, similar to NurbsSurface , it's also defined by two
PatchDirection , the Patch.getU() and Patch.getV() . |
class |
Plane
Parameterized plan.
|
class |
Primitive
Base class for all primitives
|
class |
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
The
Skeleton 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.
|
Modifier and Type | Method and Description |
---|---|
Entity |
Node.getEntity()
Gets the first entity attached to this node, if sets, will clear other entities.
|
Modifier and Type | Method and Description |
---|---|
List<Entity> |
Node.getEntities()
Gets all node entities.
|
Modifier and Type | Method and 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 attached
|
Node |
Node.createChildNode(String nodeName,
Entity entity)
Create a new child node with given node name
|
void |
Node.setEntity(Entity value)
Sets the first entity attached to this node, if sets, will clear other entities.
|
Constructor and Description |
---|
Node(String name,
Entity entity)
Initializes a new instance of the
Node class. |
Copyright © 2018. All rights reserved.