Package org.robwork.sdurw_geometry
Class PlainTriMeshCPtr
- java.lang.Object
-
- org.robwork.sdurw_geometry.PlainTriMeshCPtr
-
public class PlainTriMeshCPtr extends java.lang.Object
Ptr stores a pointer and optionally takes ownership of the value.
-
-
Constructor Summary
Constructors Constructor Description PlainTriMeshCPtr()
Default constructor yielding a NULL-pointer.PlainTriMeshCPtr(long cPtr, boolean cMemoryOwn)
PlainTriMeshCPtr(PlainTriMesh 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 PlainTriMesh
__ref__()
Dereferencing operator.TriMeshPtr
clone()
void
delete()
PlainTriMesh
deref()
The pointer stored in the object.boolean
equals(PlainTriMesh p)
static long
getCPtr(PlainTriMeshCPtr obj)
PlainTriMesh
getDeref()
Member access operator.long
getSize()
Triangle
getTriangle(long idx)
void
getTriangle(long idx, Triangle dst)
void
getTriangle(long idx, Triangle_f dst)
GeometryData.GeometryType
getType()
double
getVolume()
calculate a volume of this triangle meshboolean
isNull()
checks if the pointer is nullboolean
isShared()
check if this Ptr has shared ownership or none
ownershiplong
size()
-
-
-
Constructor Detail
-
PlainTriMeshCPtr
public PlainTriMeshCPtr(long cPtr, boolean cMemoryOwn)
-
PlainTriMeshCPtr
public PlainTriMeshCPtr()
Default constructor yielding a NULL-pointer.
-
PlainTriMeshCPtr
public PlainTriMeshCPtr(PlainTriMesh ptr)
Do not take ownership of ptr.
ptr can be null.
The constructor is implicit on purpose.
-
-
Method Detail
-
getCPtr
public static long getCPtr(PlainTriMeshCPtr obj)
-
delete
public void delete()
-
deref
public PlainTriMesh deref()
The pointer stored in the object.
-
__ref__
public PlainTriMesh __ref__()
Dereferencing operator.
-
getDeref
public PlainTriMesh getDeref()
Member access operator.
-
equals
public boolean equals(PlainTriMesh 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)
-
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()
-
getVolume
public double getVolume()
calculate a volume of this triangle mesh
-
-