Package com.openinventor.ldm
Class SoLDMDataAccess.DataInfo
- java.lang.Object
-
- com.openinventor.ldm.SoLDMDataAccess.DataInfo
-
- Enclosing class:
- SoLDMDataAccess
public class SoLDMDataAccess.DataInfo extends java.lang.Object
Information about returned data when using a pointer to access the data rather than copying the data.
-
-
Field Summary
Fields Modifier and Type Field Description int
errorFlag
Error indicatorjava.nio.ByteBuffer
tileData
Reference the data tile, valid until the releaseData method of LDMDataAccess is called or the associated SoVolumeData is destroyedSbVec3i32
tileDimension
Dimension of the data tile.SoLDMTileID
tileID
LDM tile ID of the tile that contains the data at #tilePosition.SbBox3i32
tilePosition
Position of the data tile in voxel coordinates (min = lower left back corner, max = upper right front corner).
-
Constructor Summary
Constructors Constructor Description DataInfo()
-
-
-
Field Detail
-
errorFlag
public int errorFlag
Error indicator
-
tileID
public SoLDMTileID tileID
LDM tile ID of the tile that contains the data at #tilePosition.
-
tileData
public java.nio.ByteBuffer tileData
Reference the data tile, valid until the releaseData method of LDMDataAccess is called or the associated SoVolumeData is destroyed
-
tileDimension
public SbVec3i32 tileDimension
Dimension of the data tile.
-
tilePosition
public SbBox3i32 tilePosition
Position of the data tile in voxel coordinates (min = lower left back corner, max = upper right front corner).
-
-