Package org.robwork.sdurw_geometry
Class TexturePtr
- java.lang.Object
-
- org.robwork.sdurw_geometry.TexturePtr
-
public class TexturePtr extends java.lang.Object
Ptr stores a pointer and optionally takes ownership of the value.
-
-
Constructor Summary
Constructors Constructor Description TexturePtr()
Default constructor yielding a NULL-pointer.TexturePtr(long cPtr, boolean cMemoryOwn)
TexturePtr(Model3D.Texture 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 Model3D.Texture
__ref__()
Dereferencing operator.TexturePtr
clone()
Clone the current textureTextureCPtr
cptr()
void
delete()
Model3D.Texture
deref()
The pointer stored in the object.boolean
equals(Model3D.Texture p)
static long
getCPtr(TexturePtr obj)
Model3D.Texture
getDeref()
Member access operator.java.lang.String
getName()
get id of textureVector3Df
getRGBData()
get RGB databoolean
hasImageData()
check if this texture has image databoolean
isNull()
checks if the pointer is nullboolean
isShared()
check if this Ptr has shared ownership or none
ownership
-
-
-
Constructor Detail
-
TexturePtr
public TexturePtr(long cPtr, boolean cMemoryOwn)
-
TexturePtr
public TexturePtr()
Default constructor yielding a NULL-pointer.
-
TexturePtr
public TexturePtr(Model3D.Texture ptr)
Do not take ownership of ptr.
ptr can be null.
The constructor is implicit on purpose.
-
-
Method Detail
-
getCPtr
public static long getCPtr(TexturePtr obj)
-
delete
public void delete()
-
deref
public Model3D.Texture deref()
The pointer stored in the object.
-
__ref__
public Model3D.Texture __ref__()
Dereferencing operator.
-
getDeref
public Model3D.Texture getDeref()
Member access operator.
-
equals
public boolean equals(Model3D.Texture 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 TextureCPtr cptr()
-
hasImageData
public boolean hasImageData()
check if this texture has image data- Returns:
- true if it has image data, false otherwise
-
getRGBData
public Vector3Df getRGBData()
get RGB data- Returns:
-
getName
public java.lang.String getName()
get id of texture- Returns:
-
clone
public TexturePtr clone()
Clone the current texture- Returns:
- rw::core::Ptr<Texture>
-
-