Package org.robwork.sdurw_geometry
Class BoxCPtr
- java.lang.Object
-
- org.robwork.sdurw_geometry.BoxCPtr
-
public class BoxCPtr extends java.lang.Object
Ptr stores a pointer and optionally takes ownership of the value.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Box
__ref__()
Dereferencing operator.TriMeshPtr
createMesh(int resolution)
void
delete()
Box
deref()
The pointer stored in the object.boolean
equals(Box p)
static long
getCPtr(BoxCPtr obj)
Box
getDeref()
Member access operator.Q
getParameters()
GeometryData.GeometryType
getType()
boolean
isNull()
checks if the pointer is nullboolean
isShared()
check if this Ptr has shared ownership or none
ownership
-
-
-
Constructor Detail
-
BoxCPtr
public BoxCPtr(long cPtr, boolean cMemoryOwn)
-
BoxCPtr
public BoxCPtr()
Default constructor yielding a NULL-pointer.
-
BoxCPtr
public BoxCPtr(Box ptr)
Do not take ownership of ptr.
ptr can be null.
The constructor is implicit on purpose.
-
-
Method Detail
-
getCPtr
public static long getCPtr(BoxCPtr obj)
-
delete
public void delete()
-
deref
public Box deref()
The pointer stored in the object.
-
__ref__
public Box __ref__()
Dereferencing operator.
-
getDeref
public Box getDeref()
Member access operator.
-
equals
public boolean equals(Box 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
-
createMesh
public TriMeshPtr createMesh(int resolution)
-
getParameters
public Q getParameters()
-
getType
public GeometryData.GeometryType getType()
-
-