Package org.robwork.sdurw_geometry
Class TriMeshCPtr
- java.lang.Object
-
- org.robwork.sdurw_geometry.TriMeshCPtr
-
public class TriMeshCPtr extends java.lang.ObjectPtr stores a pointer and optionally takes ownership of the value.
-
-
Constructor Summary
Constructors Constructor Description TriMeshCPtr()Default constructor yielding a NULL-pointer.TriMeshCPtr(long cPtr, boolean cMemoryOwn)TriMeshCPtr(TriMesh 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 TriMesh__ref__()Dereferencing operator.TriMeshPtrclone()make a clone of this triangle meshvoiddelete()TriMeshderef()The pointer stored in the object.booleanequals(TriMesh p)static longgetCPtr(TriMeshCPtr obj)TriMeshgetDeref()Member access operator.longgetSize()gets the number of triangles in the triangle array.TrianglegetTriangle(long idx)gets the triangle at index idx.voidgetTriangle(long idx, Triangle dst)gets the triangle at index idx.voidgetTriangle(long idx, Triangle_f dst)gets the triangle at index idx.GeometryData.GeometryTypegetType()the type of this primitivedoublegetVolume()calculate a volume of this triangle meshbooleanisNull()checks if the pointer is nullbooleanisShared()check if this Ptr has shared ownership or none
ownershiplongsize()gets the number of triangles in the triangle array.
-
-
-
Constructor Detail
-
TriMeshCPtr
public TriMeshCPtr(long cPtr, boolean cMemoryOwn)
-
TriMeshCPtr
public TriMeshCPtr()
Default constructor yielding a NULL-pointer.
-
TriMeshCPtr
public TriMeshCPtr(TriMesh ptr)
Do not take ownership of ptr.
ptr can be null.
The constructor is implicit on purpose.
-
-
Method Detail
-
getCPtr
public static long getCPtr(TriMeshCPtr obj)
-
delete
public void delete()
-
deref
public TriMesh deref()
The pointer stored in the object.
-
__ref__
public TriMesh __ref__()
Dereferencing operator.
-
getDeref
public TriMesh getDeref()
Member access operator.
-
equals
public boolean equals(TriMesh 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
-
getTriangle
public Triangle getTriangle(long idx)
gets the triangle at index idx.- Parameters:
idx- [in] the index of the triangle.- Returns:
- the triangle at index idx
-
getTriangle
public void getTriangle(long idx, Triangle dst)gets the triangle at index idx.- Parameters:
idx- [in] the index of the triangle.dst- [out] where to store the triangle at index idx
-
getTriangle
public void getTriangle(long idx, Triangle_f dst)gets the triangle at index idx. Using Floating point presicion- Parameters:
idx- [in] the index of the triangle.dst- [out] where to store the triangle at index idx
-
getSize
public long getSize()
gets the number of triangles in the triangle array.
-
size
public long size()
gets the number of triangles in the triangle array.
-
clone
public TriMeshPtr clone()
make a clone of this triangle mesh- Returns:
- clone of this trimesh
-
getVolume
public double getVolume()
calculate a volume of this triangle mesh
-
getType
public GeometryData.GeometryType getType()
the type of this primitive
-
-