Package org.blender.dna
Class BooleanModifierData
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.BooleanModifierData
-
public class BooleanModifierData extends CFacade
Generated facet for DNA struct type 'BooleanModifierData'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field 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.-
Fields inherited from class org.cakelab.blender.nio.CFacade
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
-
-
Constructor Summary
Constructors Modifier Constructor Description BooleanModifierData(long __address, Block __block, BlockTable __blockTable)
protected
BooleanModifierData(BooleanModifierData that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method 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'.-
Methods inherited from class org.cakelab.blender.nio.CFacade
__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, equals, hashCode
-
-
-
-
Field Detail
-
__DNA__SDNA_INDEX
public static final int __DNA__SDNA_INDEX
This is the sdna index of the struct BooleanModifierData.It is required when allocating a new block to store data for BooleanModifierData.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__modifier
public static final long[] __DNA__FIELD__modifier
Field descriptor (offset) for struct member 'modifier'.Pointer Arithmetics
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});
Metadata
- Field: 'modifier'
- Signature: 'ModifierData'
- Actual Size (32bit/64bit): 100/120
-
__DNA__FIELD__object
public static final long[] __DNA__FIELD__object
Field descriptor (offset) for struct member 'object'.Pointer Arithmetics
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});
Metadata
- Field: 'object'
- Signature: 'Object*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__operation
public static final long[] __DNA__FIELD__operation
Field descriptor (offset) for struct member 'operation'.Pointer Arithmetics
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});
Metadata
- Field: 'operation'
- Signature: 'char'
- Actual Size (32bit/64bit): 1/1
-
__DNA__FIELD___pad
public static final long[] __DNA__FIELD___pad
Field descriptor (offset) for struct member '_pad'.Pointer Arithmetics
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});
Metadata
- Field: '_pad'
- Signature: 'char[2]'
- Actual Size (32bit/64bit): 2/2
-
__DNA__FIELD__bm_flag
public static final long[] __DNA__FIELD__bm_flag
Field descriptor (offset) for struct member 'bm_flag'.Pointer Arithmetics
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});
Metadata
- Field: 'bm_flag'
- Signature: 'char'
- Actual Size (32bit/64bit): 1/1
-
__DNA__FIELD__double_threshold
public static final long[] __DNA__FIELD__double_threshold
Field descriptor (offset) for struct member 'double_threshold'.Pointer Arithmetics
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});
Metadata
- Field: 'double_threshold'
- Signature: 'float'
- Actual Size (32bit/64bit): 4/4
-
-
Constructor Detail
-
BooleanModifierData
public BooleanModifierData(long __address, Block __block, BlockTable __blockTable)
-
BooleanModifierData
protected BooleanModifierData(BooleanModifierData that)
-
-
Method Detail
-
getModifier
public ModifierData getModifier() throws java.io.IOException
Get method for struct member 'modifier'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__modifier
-
setModifier
public void setModifier(ModifierData modifier) throws java.io.IOException
Set method for struct member 'modifier'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__modifier
-
getObject
public CPointer<BlenderObject> getObject() throws java.io.IOException
Get method for struct member 'object'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__object
-
setObject
public void setObject(CPointer<BlenderObject> object) throws java.io.IOException
Set method for struct member 'object'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__object
-
getOperation
public byte getOperation() throws java.io.IOException
Get method for struct member 'operation'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__operation
-
setOperation
public void setOperation(byte operation) throws java.io.IOException
Set method for struct member 'operation'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__operation
-
get_pad
public CArrayFacade<java.lang.Byte> get_pad() throws java.io.IOException
Get method for struct member '_pad'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad
-
set_pad
public void set_pad(CArrayFacade<java.lang.Byte> _pad) throws java.io.IOException
Set method for struct member '_pad'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad
-
getBm_flag
public byte getBm_flag() throws java.io.IOException
Get method for struct member 'bm_flag'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__bm_flag
-
setBm_flag
public void setBm_flag(byte bm_flag) throws java.io.IOException
Set method for struct member 'bm_flag'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__bm_flag
-
getDouble_threshold
public float getDouble_threshold() throws java.io.IOException
Get method for struct member 'double_threshold'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__double_threshold
-
setDouble_threshold
public void setDouble_threshold(float double_threshold) throws java.io.IOException
Set method for struct member 'double_threshold'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__double_threshold
-
__io__addressof
public CPointer<BooleanModifierData> __io__addressof()
Instantiates a pointer on this instance.
-
-