Package org.robwork.sdurw_geometry
Class PlainTriMesh_fPtr
- java.lang.Object
-
- org.robwork.sdurw_geometry.PlainTriMesh_fPtr
-
public class PlainTriMesh_fPtr extends java.lang.ObjectPtr stores a pointer and optionally takes ownership of the value.
-
-
Constructor Summary
Constructors Constructor Description PlainTriMesh_fPtr()Default constructor yielding a NULL-pointer.PlainTriMesh_fPtr(long cPtr, boolean cMemoryOwn)PlainTriMesh_fPtr(PlainTriMesh_f 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_f__ref__()Dereferencing operator.voidadd(PlainTriMesh_fPtr triangles)Add all triangles in the mesh triangles to thisvoidadd(Triangle_f triangle)add a triangle to the triangle mesh.voidclear()Clears the list of trianglesTriMeshPtrclone()PlainTriMesh_fCPtrcptr()voiddelete()PlainTriMesh_fderef()The pointer stored in the object.booleanequals(PlainTriMesh_f p)Triangle_fget(long i)static longgetCPtr(PlainTriMesh_fPtr obj)PlainTriMesh_fgetDeref()Member access operator.longgetSize()TrianglegetTriangle(long idx)voidgetTriangle(long idx, Triangle dst)voidgetTriangle(long idx, Triangle_f dst)VectorTriangle_fgetTriangles()the vector of trianglesTriMeshPtrgetTriMesh()TriMeshPtrgetTriMesh(boolean forceCopy)GeometryData.GeometryTypegetType()doublegetVolume()calculate a volume of this triangle meshbooleanisConvex()booleanisNull()checks if the pointer is nullbooleanisShared()check if this Ptr has shared ownership or none
ownershipvoidresize(long i)resize the triangle meshvoidscale(double scale)voidset(long i, Triangle_f d)voidsetConvexEnabled(boolean isConvex)longsize()java.lang.StringtoString(GeometryData.GeometryType type)format GeometryType to string
-
-
-
Constructor Detail
-
PlainTriMesh_fPtr
public PlainTriMesh_fPtr(long cPtr, boolean cMemoryOwn)
-
PlainTriMesh_fPtr
public PlainTriMesh_fPtr()
Default constructor yielding a NULL-pointer.
-
PlainTriMesh_fPtr
public PlainTriMesh_fPtr(PlainTriMesh_f ptr)
Do not take ownership of ptr.
ptr can be null.
The constructor is implicit on purpose.
-
-
Method Detail
-
getCPtr
public static long getCPtr(PlainTriMesh_fPtr obj)
-
delete
public void delete()
-
deref
public PlainTriMesh_f deref()
The pointer stored in the object.
-
__ref__
public PlainTriMesh_f __ref__()
Dereferencing operator.
-
getDeref
public PlainTriMesh_f getDeref()
Member access operator.
-
equals
public boolean equals(PlainTriMesh_f 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 PlainTriMesh_fCPtr cptr()
-
scale
public void scale(double scale)
-
add
public void add(Triangle_f triangle)
add a triangle to the triangle mesh.- Parameters:
triangle- [in] Triangle to add. The triangle is copied.
-
add
public void add(PlainTriMesh_fPtr triangles)
Add all triangles in the mesh triangles to this
-
clear
public void clear()
Clears the list of triangles
-
getTriangles
public VectorTriangle_f getTriangles()
the vector of triangles- Returns:
- a reference to the triangle vector
-
get
public Triangle_f get(long i)
-
set
public void set(long i, Triangle_f 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-
-
-