Package org.robwork.sdurw_graphics
Class TextureDataCPtr
- java.lang.Object
-
- org.robwork.sdurw_graphics.TextureDataCPtr
-
public class TextureDataCPtr extends java.lang.Object
Ptr stores a pointer and optionally takes ownership of the value.
-
-
Constructor Summary
Constructors Constructor Description TextureDataCPtr()
Default constructor yielding a NULL-pointer.TextureDataCPtr(long cPtr, boolean cMemoryOwn)
TextureDataCPtr(TextureData 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 TextureData
__ref__()
Dereferencing operator.TexturePtr
clone()
Clone the current texture.
The image data will be shared with the clonevoid
delete()
TextureData
deref()
The pointer stored in the object.boolean
equals(TextureData p)
static long
getCPtr(TextureDataCPtr obj)
TextureData
getDeref()
Member access operator.ImagePtr
getImageData()
get image datajava.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
-
TextureDataCPtr
public TextureDataCPtr(long cPtr, boolean cMemoryOwn)
-
TextureDataCPtr
public TextureDataCPtr()
Default constructor yielding a NULL-pointer.
-
TextureDataCPtr
public TextureDataCPtr(TextureData ptr)
Do not take ownership of ptr.
ptr can be null.
The constructor is implicit on purpose.
-
-
Method Detail
-
getCPtr
public static long getCPtr(TextureDataCPtr obj)
-
delete
public void delete()
-
deref
public TextureData deref()
The pointer stored in the object.
-
__ref__
public TextureData __ref__()
Dereferencing operator.
-
getDeref
public TextureData getDeref()
Member access operator.
-
equals
public boolean equals(TextureData 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
-
hasImageData
public boolean hasImageData()
check if this texture has image data- Returns:
- true if it has image data, false otherwise
-
getImageData
public ImagePtr getImageData()
get image data- Returns:
-
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.
The image data will be shared with the clone- Returns:
- rw::core::Ptr<Texture>
-
-