Package org.robwork.sdurw_geometry
Class PlainTriMeshN3Ptr
- java.lang.Object
-
- org.robwork.sdurw_geometry.PlainTriMeshN3Ptr
-
public class PlainTriMeshN3Ptr extends java.lang.Object
Ptr stores a pointer and optionally takes ownership of the value.
-
-
Constructor Summary
Constructors Constructor Description PlainTriMeshN3Ptr()
Default constructor yielding a NULL-pointer.PlainTriMeshN3Ptr(long cPtr, boolean cMemoryOwn)
PlainTriMeshN3Ptr(PlainTriMeshN3 ptr)
Do not take ownership of ptr.
ptr can be null.
The constructor is implicit on purpose.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description PlainTriMeshN3
__ref__()
Dereferencing operator.void
add(PlainTriMeshN3Ptr triangles)
Add all triangles in the mesh triangles to thisvoid
add(TriangleN3 triangle)
add a triangle to the triangle mesh.void
clear()
Clears the list of trianglesTriMeshPtr
clone()
PlainTriMeshN3CPtr
cptr()
void
delete()
PlainTriMeshN3
deref()
The pointer stored in the object.boolean
equals(PlainTriMeshN3 p)
TriangleN3
get(long i)
static long
getCPtr(PlainTriMeshN3Ptr obj)
PlainTriMeshN3
getDeref()
Member access operator.long
getSize()
Triangle
getTriangle(long idx)
void
getTriangle(long idx, Triangle dst)
void
getTriangle(long idx, Triangle_f dst)
VectorTriangleN3
getTriangles()
the vector of trianglesTriMeshPtr
getTriMesh()
TriMeshPtr
getTriMesh(boolean forceCopy)
GeometryData.GeometryType
getType()
double
getVolume()
calculate a volume of this triangle meshboolean
isConvex()
boolean
isNull()
checks if the pointer is nullboolean
isShared()
check if this Ptr has shared ownership or none
ownershipvoid
resize(long i)
resize the triangle meshvoid
scale(double scale)
void
set(long i, TriangleN3 d)
void
setConvexEnabled(boolean isConvex)
long
size()
java.lang.String
toString(GeometryData.GeometryType type)
format GeometryType to string
-
-
-
Constructor Detail
-
PlainTriMeshN3Ptr
public PlainTriMeshN3Ptr(long cPtr, boolean cMemoryOwn)
-
PlainTriMeshN3Ptr
public PlainTriMeshN3Ptr()
Default constructor yielding a NULL-pointer.
-
PlainTriMeshN3Ptr
public PlainTriMeshN3Ptr(PlainTriMeshN3 ptr)
Do not take ownership of ptr.
ptr can be null.
The constructor is implicit on purpose.
-
-
Method Detail
-
getCPtr
public static long getCPtr(PlainTriMeshN3Ptr obj)
-
delete
public void delete()
-
deref
public PlainTriMeshN3 deref()
The pointer stored in the object.
-
__ref__
public PlainTriMeshN3 __ref__()
Dereferencing operator.
-
getDeref
public PlainTriMeshN3 getDeref()
Member access operator.
-
equals
public boolean equals(PlainTriMeshN3 p)
-
isShared
public boolean isShared()
check if this Ptr has shared ownership or none
ownership- Returns:
- true if Ptr has shared ownership, false if it has no ownership.
-
isNull
public boolean isNull()
checks if the pointer is null- Returns:
- Returns true if the pointer is null
-
cptr
public PlainTriMeshN3CPtr cptr()
-
scale
public void scale(double scale)
-
add
public void add(TriangleN3 triangle)
add a triangle to the triangle mesh.- Parameters:
triangle
- [in] Triangle to add. The triangle is copied.
-
add
public void add(PlainTriMeshN3Ptr triangles)
Add all triangles in the mesh triangles to this
-
clear
public void clear()
Clears the list of triangles
-
getTriangles
public VectorTriangleN3 getTriangles()
the vector of triangles- Returns:
- a reference to the triangle vector
-
get
public TriangleN3 get(long i)
-
set
public void set(long i, TriangleN3 d)
-
resize
public void resize(long i)
resize the triangle mesh- Parameters:
i
- [in] new size of mesh.
-
getTriangle
public Triangle getTriangle(long idx)
-
getTriangle
public void getTriangle(long idx, Triangle dst)
-
getTriangle
public void getTriangle(long idx, Triangle_f dst)
-
getSize
public long getSize()
-
size
public long size()
-
getType
public GeometryData.GeometryType getType()
-
clone
public TriMeshPtr clone()
-
getTriMesh
public TriMeshPtr getTriMesh(boolean forceCopy)
-
getTriMesh
public TriMeshPtr getTriMesh()
-
isConvex
public boolean isConvex()
-
setConvexEnabled
public void setConvexEnabled(boolean isConvex)
-
getVolume
public double getVolume()
calculate a volume of this triangle mesh
-
toString
public java.lang.String toString(GeometryData.GeometryType type)
format GeometryType to string- Parameters:
type
-
-
-