Class LatticeModifierData
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.LatticeModifierData
-
public class LatticeModifierData extends CFacade
Generated facet for DNA struct type 'LatticeModifierData'.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___pad1
Field descriptor (offset) for struct member '_pad1'.static long[]
__DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.static long[]
__DNA__FIELD__modifier
Field descriptor (offset) for struct member 'modifier'.static long[]
__DNA__FIELD__name
Field descriptor (offset) for struct member 'name'.static long[]
__DNA__FIELD__object
Field descriptor (offset) for struct member 'object'.static long[]
__DNA__FIELD__strength
Field descriptor (offset) for struct member 'strength'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct LatticeModifierData.-
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 LatticeModifierData(long __address, Block __block, BlockTable __blockTable)
protected
LatticeModifierData(LatticeModifierData that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<LatticeModifierData>
__io__addressof()
Instantiates a pointer on this instance.CArrayFacade<java.lang.Byte>
get_pad()
Get method for struct member '_pad'.CPointer<java.lang.Object>
get_pad1()
Get method for struct member '_pad1'.short
getFlag()
Get method for struct member 'flag'.ModifierData
getModifier()
Get method for struct member 'modifier'.CArrayFacade<java.lang.Byte>
getName()
Get method for struct member 'name'.CPointer<BlenderObject>
getObject()
Get method for struct member 'object'.float
getStrength()
Get method for struct member 'strength'.void
set_pad(CArrayFacade<java.lang.Byte> _pad)
Set method for struct member '_pad'.void
set_pad1(CPointer<java.lang.Object> _pad1)
Set method for struct member '_pad1'.void
setFlag(short flag)
Set method for struct member 'flag'.void
setModifier(ModifierData modifier)
Set method for struct member 'modifier'.void
setName(CArrayFacade<java.lang.Byte> name)
Set method for struct member 'name'.void
setObject(CPointer<BlenderObject> object)
Set method for struct member 'object'.void
setStrength(float strength)
Set method for struct member 'strength'.-
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 LatticeModifierData.It is required when allocating a new block to store data for LatticeModifierData.
- 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:
LatticeModifierData latticemodifierdata = ...; CPointer<Object> p = latticemodifierdata.__dna__addressof(LatticeModifierData.__DNA__FIELD__modifier); CPointer<ModifierData> p_modifier = p.cast(new Class[]{ModifierData.class});
Metadata
- Field: 'modifier'
- Signature: 'ModifierData'
- Actual Size (32bit/64bit): 104/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:
LatticeModifierData latticemodifierdata = ...; CPointer<Object> p = latticemodifierdata.__dna__addressof(LatticeModifierData.__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__name
public static final long[] __DNA__FIELD__name
Field descriptor (offset) for struct member 'name'.Field Documentation
Blender Source Code
Optional vertex-group name, #MAX_VGROUP_NAME.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
LatticeModifierData latticemodifierdata = ...; CPointer<Object> p = latticemodifierdata.__dna__addressof(LatticeModifierData.__DNA__FIELD__name); CPointer<CArrayFacade<Byte>> p_name = p.cast(new Class[]{CArrayFacade.class, Byte.class});
Metadata
- Field: 'name'
- Signature: 'char[64]'
- Actual Size (32bit/64bit): 64/64
-
__DNA__FIELD__strength
public static final long[] __DNA__FIELD__strength
Field descriptor (offset) for struct member 'strength'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
LatticeModifierData latticemodifierdata = ...; CPointer<Object> p = latticemodifierdata.__dna__addressof(LatticeModifierData.__DNA__FIELD__strength); CPointer<Float> p_strength = p.cast(new Class[]{Float.class});
Metadata
- Field: 'strength'
- Signature: 'float'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__flag
public static final long[] __DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
LatticeModifierData latticemodifierdata = ...; CPointer<Object> p = latticemodifierdata.__dna__addressof(LatticeModifierData.__DNA__FIELD__flag); CPointer<Short> p_flag = p.cast(new Class[]{Short.class});
Metadata
- Field: 'flag'
- Signature: 'short'
- Actual Size (32bit/64bit): 2/2
-
__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:
LatticeModifierData latticemodifierdata = ...; CPointer<Object> p = latticemodifierdata.__dna__addressof(LatticeModifierData.__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___pad1
public static final long[] __DNA__FIELD___pad1
Field descriptor (offset) for struct member '_pad1'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
LatticeModifierData latticemodifierdata = ...; CPointer<Object> p = latticemodifierdata.__dna__addressof(LatticeModifierData.__DNA__FIELD___pad1); CPointer<CPointer<Object>> p__pad1 = p.cast(new Class[]{CPointer.class, Object.class});
Metadata
- Field: '_pad1'
- Signature: 'void*'
- Actual Size (32bit/64bit): 4/8
-
-
Constructor Detail
-
LatticeModifierData
public LatticeModifierData(long __address, Block __block, BlockTable __blockTable)
-
LatticeModifierData
protected LatticeModifierData(LatticeModifierData 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
-
getName
public CArrayFacade<java.lang.Byte> getName() throws java.io.IOException
Get method for struct member 'name'.Field Documentation
Blender Source Code
Optional vertex-group name, #MAX_VGROUP_NAME.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__name
-
setName
public void setName(CArrayFacade<java.lang.Byte> name) throws java.io.IOException
Set method for struct member 'name'.Field Documentation
Blender Source Code
Optional vertex-group name, #MAX_VGROUP_NAME.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__name
-
getStrength
public float getStrength() throws java.io.IOException
Get method for struct member 'strength'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__strength
-
setStrength
public void setStrength(float strength) throws java.io.IOException
Set method for struct member 'strength'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__strength
-
getFlag
public short getFlag() throws java.io.IOException
Get method for struct member 'flag'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__flag
-
setFlag
public void setFlag(short flag) throws java.io.IOException
Set method for struct member 'flag'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__flag
-
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
-
get_pad1
public CPointer<java.lang.Object> get_pad1() throws java.io.IOException
Get method for struct member '_pad1'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad1
-
set_pad1
public void set_pad1(CPointer<java.lang.Object> _pad1) throws java.io.IOException
Set method for struct member '_pad1'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad1
-
__io__addressof
public CPointer<LatticeModifierData> __io__addressof()
Instantiates a pointer on this instance.
-
-