|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.bulletphysics.linearmath.convexhull.HullDesc
public class HullDesc
Describes point cloud data and other input for conversion to polygonal representation.
Field Summary | |
---|---|
int |
flags
Flags to use when generating the convex hull, see HullFlags . |
int |
maxFaces
Maximum number of faces to be considered for the hull. |
int |
maxVertices
Maximum number of vertices to be considered for the hull. |
float |
normalEpsilon
Epsilon value for removing duplicates. |
int |
vcount
Number of vertices in the input point cloud. |
ObjectArrayList<Vector3f> |
vertices
Array of vertices. |
Constructor Summary | |
---|---|
HullDesc()
|
|
HullDesc(int flag,
int vcount,
ObjectArrayList<Vector3f> vertices)
|
|
HullDesc(int flag,
int vcount,
ObjectArrayList<Vector3f> vertices,
int stride)
|
Method Summary | |
---|---|
void |
clearHullFlag(int flag)
|
boolean |
hasHullFlag(int flag)
|
void |
setHullFlag(int flag)
|
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public int flags
HullFlags
.
public int vcount
public ObjectArrayList<Vector3f> vertices
public float normalEpsilon
public int maxVertices
public int maxFaces
Constructor Detail |
---|
public HullDesc()
public HullDesc(int flag, int vcount, ObjectArrayList<Vector3f> vertices)
public HullDesc(int flag, int vcount, ObjectArrayList<Vector3f> vertices, int stride)
Method Detail |
---|
public boolean hasHullFlag(int flag)
public void setHullFlag(int flag)
public void clearHullFlag(int flag)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |