public class VolumeToMeshModifierData extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD___pad1
Field descriptor (offset) for struct member '_pad1'.
|
static long[] |
__DNA__FIELD__adaptivity
Field descriptor (offset) for struct member 'adaptivity'.
|
static long[] |
__DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.
|
static long[] |
__DNA__FIELD__grid_name
Field descriptor (offset) for struct member 'grid_name'.
|
static long[] |
__DNA__FIELD__modifier
Field descriptor (offset) for struct member 'modifier'.
|
static long[] |
__DNA__FIELD__object
Field descriptor (offset) for struct member 'object'.
|
static long[] |
__DNA__FIELD__resolution_mode
Field descriptor (offset) for struct member 'resolution_mode'.
|
static long[] |
__DNA__FIELD__threshold
Field descriptor (offset) for struct member 'threshold'.
|
static long[] |
__DNA__FIELD__voxel_amount
Field descriptor (offset) for struct member 'voxel_amount'.
|
static long[] |
__DNA__FIELD__voxel_size
Field descriptor (offset) for struct member 'voxel_size'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct VolumeToMeshModifierData.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
|
VolumeToMeshModifierData(long __address,
Block __block,
BlockTable __blockTable) |
protected |
VolumeToMeshModifierData(VolumeToMeshModifierData that) |
Modifier and Type | Method and Description |
---|---|
CPointer<VolumeToMeshModifierData> |
__io__addressof()
Instantiates a pointer on this instance.
|
CPointer<java.lang.Object> |
get_pad1()
Get method for struct member '_pad1'.
|
float |
getAdaptivity()
Get method for struct member 'adaptivity'.
|
int |
getFlag()
Get method for struct member 'flag'.
|
CArrayFacade<java.lang.Byte> |
getGrid_name()
Get method for struct member 'grid_name'.
|
ModifierData |
getModifier()
Get method for struct member 'modifier'.
|
CPointer<BlenderObject> |
getObject()
Get method for struct member 'object'.
|
int |
getResolution_mode()
Get method for struct member 'resolution_mode'.
|
float |
getThreshold()
Get method for struct member 'threshold'.
|
int |
getVoxel_amount()
Get method for struct member 'voxel_amount'.
|
float |
getVoxel_size()
Get method for struct member 'voxel_size'.
|
void |
set_pad1(CPointer<java.lang.Object> _pad1)
Set method for struct member '_pad1'.
|
void |
setAdaptivity(float adaptivity)
Set method for struct member 'adaptivity'.
|
void |
setFlag(int flag)
Set method for struct member 'flag'.
|
void |
setGrid_name(CArrayFacade<java.lang.Byte> grid_name)
Set method for struct member 'grid_name'.
|
void |
setModifier(ModifierData modifier)
Set method for struct member 'modifier'.
|
void |
setObject(CPointer<BlenderObject> object)
Set method for struct member 'object'.
|
void |
setResolution_mode(int resolution_mode)
Set method for struct member 'resolution_mode'.
|
void |
setThreshold(float threshold)
Set method for struct member 'threshold'.
|
void |
setVoxel_amount(int voxel_amount)
Set method for struct member 'voxel_amount'.
|
void |
setVoxel_size(float voxel_size)
Set method for struct member 'voxel_size'.
|
__io__addressof, __io__addressof, __io__equals, __io__generic__copy, __io__generic__copy, __io__instanceof, __io__native__copy, __io__newInstance, __io__same__encoding, __io__sizeof, __io__sizeof, __io__subclassof
public static final int __DNA__SDNA_INDEX
It is required when allocating a new block to store data for VolumeToMeshModifierData.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__modifier
This is how you get a reference on the corresponding field in the struct:
VolumeToMeshModifierData volumetomeshmodifierdata = ...; CPointer<Object> p = volumetomeshmodifierdata.__dna__addressof(VolumeToMeshModifierData.__DNA__FIELD__modifier); CPointer<ModifierData> p_modifier = p.cast(new Class[]{ModifierData.class});
public static final long[] __DNA__FIELD__object
This is the volume object that is supposed to be converted to a mesh.
This is how you get a reference on the corresponding field in the struct:
VolumeToMeshModifierData volumetomeshmodifierdata = ...; CPointer<Object> p = volumetomeshmodifierdata.__dna__addressof(VolumeToMeshModifierData.__DNA__FIELD__object); CPointer<CPointer<BlenderObject>> p_object = p.cast(new Class[]{CPointer.class, BlenderObject.class});
public static final long[] __DNA__FIELD__threshold
This is how you get a reference on the corresponding field in the struct:
VolumeToMeshModifierData volumetomeshmodifierdata = ...; CPointer<Object> p = volumetomeshmodifierdata.__dna__addressof(VolumeToMeshModifierData.__DNA__FIELD__threshold); CPointer<Float> p_threshold = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__adaptivity
This is how you get a reference on the corresponding field in the struct:
VolumeToMeshModifierData volumetomeshmodifierdata = ...; CPointer<Object> p = volumetomeshmodifierdata.__dna__addressof(VolumeToMeshModifierData.__DNA__FIELD__adaptivity); CPointer<Float> p_adaptivity = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__flag
VolumeToMeshFlag
This is how you get a reference on the corresponding field in the struct:
VolumeToMeshModifierData volumetomeshmodifierdata = ...; CPointer<Object> p = volumetomeshmodifierdata.__dna__addressof(VolumeToMeshModifierData.__DNA__FIELD__flag); CPointer<Integer> p_flag = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__resolution_mode
VolumeToMeshResolutionMode
This is how you get a reference on the corresponding field in the struct:
VolumeToMeshModifierData volumetomeshmodifierdata = ...; CPointer<Object> p = volumetomeshmodifierdata.__dna__addressof(VolumeToMeshModifierData.__DNA__FIELD__resolution_mode); CPointer<Integer> p_resolution_mode = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__voxel_size
This is how you get a reference on the corresponding field in the struct:
VolumeToMeshModifierData volumetomeshmodifierdata = ...; CPointer<Object> p = volumetomeshmodifierdata.__dna__addressof(VolumeToMeshModifierData.__DNA__FIELD__voxel_size); CPointer<Float> p_voxel_size = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__voxel_amount
This is how you get a reference on the corresponding field in the struct:
VolumeToMeshModifierData volumetomeshmodifierdata = ...; CPointer<Object> p = volumetomeshmodifierdata.__dna__addressof(VolumeToMeshModifierData.__DNA__FIELD__voxel_amount); CPointer<Integer> p_voxel_amount = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__grid_name
MAX_NAME
This is how you get a reference on the corresponding field in the struct:
VolumeToMeshModifierData volumetomeshmodifierdata = ...; CPointer<Object> p = volumetomeshmodifierdata.__dna__addressof(VolumeToMeshModifierData.__DNA__FIELD__grid_name); CPointer<CArrayFacade<Byte>> p_grid_name = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public static final long[] __DNA__FIELD___pad1
This is how you get a reference on the corresponding field in the struct:
VolumeToMeshModifierData volumetomeshmodifierdata = ...; CPointer<Object> p = volumetomeshmodifierdata.__dna__addressof(VolumeToMeshModifierData.__DNA__FIELD___pad1); CPointer<CPointer<Object>> p__pad1 = p.cast(new Class[]{CPointer.class, Object.class});
public VolumeToMeshModifierData(long __address, Block __block, BlockTable __blockTable)
protected VolumeToMeshModifierData(VolumeToMeshModifierData that)
public ModifierData getModifier() throws java.io.IOException
java.io.IOException
__DNA__FIELD__modifier
public void setModifier(ModifierData modifier) throws java.io.IOException
java.io.IOException
__DNA__FIELD__modifier
public CPointer<BlenderObject> getObject() throws java.io.IOException
This is the volume object that is supposed to be converted to a mesh.
java.io.IOException
__DNA__FIELD__object
public void setObject(CPointer<BlenderObject> object) throws java.io.IOException
This is the volume object that is supposed to be converted to a mesh.
java.io.IOException
__DNA__FIELD__object
public float getThreshold() throws java.io.IOException
java.io.IOException
__DNA__FIELD__threshold
public void setThreshold(float threshold) throws java.io.IOException
java.io.IOException
__DNA__FIELD__threshold
public float getAdaptivity() throws java.io.IOException
java.io.IOException
__DNA__FIELD__adaptivity
public void setAdaptivity(float adaptivity) throws java.io.IOException
java.io.IOException
__DNA__FIELD__adaptivity
public int getFlag() throws java.io.IOException
VolumeToMeshFlag
java.io.IOException
__DNA__FIELD__flag
public void setFlag(int flag) throws java.io.IOException
VolumeToMeshFlag
java.io.IOException
__DNA__FIELD__flag
public int getResolution_mode() throws java.io.IOException
VolumeToMeshResolutionMode
java.io.IOException
__DNA__FIELD__resolution_mode
public void setResolution_mode(int resolution_mode) throws java.io.IOException
VolumeToMeshResolutionMode
java.io.IOException
__DNA__FIELD__resolution_mode
public float getVoxel_size() throws java.io.IOException
java.io.IOException
__DNA__FIELD__voxel_size
public void setVoxel_size(float voxel_size) throws java.io.IOException
java.io.IOException
__DNA__FIELD__voxel_size
public int getVoxel_amount() throws java.io.IOException
java.io.IOException
__DNA__FIELD__voxel_amount
public void setVoxel_amount(int voxel_amount) throws java.io.IOException
java.io.IOException
__DNA__FIELD__voxel_amount
public CArrayFacade<java.lang.Byte> getGrid_name() throws java.io.IOException
MAX_NAME
java.io.IOException
__DNA__FIELD__grid_name
public void setGrid_name(CArrayFacade<java.lang.Byte> grid_name) throws java.io.IOException
MAX_NAME
java.io.IOException
__DNA__FIELD__grid_name
public CPointer<java.lang.Object> get_pad1() throws java.io.IOException
java.io.IOException
__DNA__FIELD___pad1
public void set_pad1(CPointer<java.lang.Object> _pad1) throws java.io.IOException
java.io.IOException
__DNA__FIELD___pad1
public CPointer<VolumeToMeshModifierData> __io__addressof()