public class BooleanModifierData extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD___pad
Field descriptor (offset) for struct member '_pad'.
|
static long[] |
__DNA__FIELD__bm_flag
Field descriptor (offset) for struct member 'bm_flag'.
|
static long[] |
__DNA__FIELD__double_threshold
Field descriptor (offset) for struct member 'double_threshold'.
|
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__operation
Field descriptor (offset) for struct member 'operation'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct BooleanModifierData.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
protected |
BooleanModifierData(BooleanModifierData that) |
|
BooleanModifierData(long __address,
Block __block,
BlockTable __blockTable) |
Modifier and Type | Method and Description |
---|---|
CPointer<BooleanModifierData> |
__io__addressof()
Instantiates a pointer on this instance.
|
CArrayFacade<java.lang.Byte> |
get_pad()
Get method for struct member '_pad'.
|
byte |
getBm_flag()
Get method for struct member 'bm_flag'.
|
float |
getDouble_threshold()
Get method for struct member 'double_threshold'.
|
ModifierData |
getModifier()
Get method for struct member 'modifier'.
|
CPointer<BlenderObject> |
getObject()
Get method for struct member 'object'.
|
byte |
getOperation()
Get method for struct member 'operation'.
|
void |
set_pad(CArrayFacade<java.lang.Byte> _pad)
Set method for struct member '_pad'.
|
void |
setBm_flag(byte bm_flag)
Set method for struct member 'bm_flag'.
|
void |
setDouble_threshold(float double_threshold)
Set method for struct member 'double_threshold'.
|
void |
setModifier(ModifierData modifier)
Set method for struct member 'modifier'.
|
void |
setObject(CPointer<BlenderObject> object)
Set method for struct member 'object'.
|
void |
setOperation(byte operation)
Set method for struct member 'operation'.
|
__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 BooleanModifierData.
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:
BooleanModifierData booleanmodifierdata = ...; CPointer<Object> p = booleanmodifierdata.__dna__addressof(BooleanModifierData.__DNA__FIELD__modifier); CPointer<ModifierData> p_modifier = p.cast(new Class[]{ModifierData.class});
public static final long[] __DNA__FIELD__object
This is how you get a reference on the corresponding field in the struct:
BooleanModifierData booleanmodifierdata = ...; CPointer<Object> p = booleanmodifierdata.__dna__addressof(BooleanModifierData.__DNA__FIELD__object); CPointer<CPointer<BlenderObject>> p_object = p.cast(new Class[]{CPointer.class, BlenderObject.class});
public static final long[] __DNA__FIELD__operation
This is how you get a reference on the corresponding field in the struct:
BooleanModifierData booleanmodifierdata = ...; CPointer<Object> p = booleanmodifierdata.__dna__addressof(BooleanModifierData.__DNA__FIELD__operation); CPointer<Byte> p_operation = p.cast(new Class[]{Byte.class});
public static final long[] __DNA__FIELD___pad
This is how you get a reference on the corresponding field in the struct:
BooleanModifierData booleanmodifierdata = ...; CPointer<Object> p = booleanmodifierdata.__dna__addressof(BooleanModifierData.__DNA__FIELD___pad); CPointer<CArrayFacade<Byte>> p__pad = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public static final long[] __DNA__FIELD__bm_flag
This is how you get a reference on the corresponding field in the struct:
BooleanModifierData booleanmodifierdata = ...; CPointer<Object> p = booleanmodifierdata.__dna__addressof(BooleanModifierData.__DNA__FIELD__bm_flag); CPointer<Byte> p_bm_flag = p.cast(new Class[]{Byte.class});
public static final long[] __DNA__FIELD__double_threshold
This is how you get a reference on the corresponding field in the struct:
BooleanModifierData booleanmodifierdata = ...; CPointer<Object> p = booleanmodifierdata.__dna__addressof(BooleanModifierData.__DNA__FIELD__double_threshold); CPointer<Float> p_double_threshold = p.cast(new Class[]{Float.class});
public BooleanModifierData(long __address, Block __block, BlockTable __blockTable)
protected BooleanModifierData(BooleanModifierData 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
java.io.IOException
__DNA__FIELD__object
public void setObject(CPointer<BlenderObject> object) throws java.io.IOException
java.io.IOException
__DNA__FIELD__object
public byte getOperation() throws java.io.IOException
java.io.IOException
__DNA__FIELD__operation
public void setOperation(byte operation) throws java.io.IOException
java.io.IOException
__DNA__FIELD__operation
public CArrayFacade<java.lang.Byte> get_pad() throws java.io.IOException
java.io.IOException
__DNA__FIELD___pad
public void set_pad(CArrayFacade<java.lang.Byte> _pad) throws java.io.IOException
java.io.IOException
__DNA__FIELD___pad
public byte getBm_flag() throws java.io.IOException
java.io.IOException
__DNA__FIELD__bm_flag
public void setBm_flag(byte bm_flag) throws java.io.IOException
java.io.IOException
__DNA__FIELD__bm_flag
public float getDouble_threshold() throws java.io.IOException
java.io.IOException
__DNA__FIELD__double_threshold
public void setDouble_threshold(float double_threshold) throws java.io.IOException
java.io.IOException
__DNA__FIELD__double_threshold
public CPointer<BooleanModifierData> __io__addressof()