Class ArmatureModifierData
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.ArmatureModifierData
-
public class ArmatureModifierData extends CFacade
Generated facet for DNA struct type 'ArmatureModifierData'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD___pad2
Field descriptor (offset) for struct member '_pad2'.static long[]
__DNA__FIELD__defgrp_name
Field descriptor (offset) for struct member 'defgrp_name'.static long[]
__DNA__FIELD__deformflag
Field descriptor (offset) for struct member 'deformflag'.static long[]
__DNA__FIELD__modifier
Field descriptor (offset) for struct member 'modifier'.static long[]
__DNA__FIELD__multi
Field descriptor (offset) for struct member 'multi'.static long[]
__DNA__FIELD__object
Field descriptor (offset) for struct member 'object'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct ArmatureModifierData.-
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 ArmatureModifierData(long __address, Block __block, BlockTable __blockTable)
protected
ArmatureModifierData(ArmatureModifierData that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<ArmatureModifierData>
__io__addressof()
Instantiates a pointer on this instance.CArrayFacade<java.lang.Byte>
get_pad2()
Get method for struct member '_pad2'.CArrayFacade<java.lang.Byte>
getDefgrp_name()
Get method for struct member 'defgrp_name'.short
getDeformflag()
Get method for struct member 'deformflag'.ModifierData
getModifier()
Get method for struct member 'modifier'.short
getMulti()
Get method for struct member 'multi'.CPointer<BlenderObject>
getObject()
Get method for struct member 'object'.void
set_pad2(CArrayFacade<java.lang.Byte> _pad2)
Set method for struct member '_pad2'.void
setDefgrp_name(CArrayFacade<java.lang.Byte> defgrp_name)
Set method for struct member 'defgrp_name'.void
setDeformflag(short deformflag)
Set method for struct member 'deformflag'.void
setModifier(ModifierData modifier)
Set method for struct member 'modifier'.void
setMulti(short multi)
Set method for struct member 'multi'.void
setObject(CPointer<BlenderObject> object)
Set method for struct member 'object'.-
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 ArmatureModifierData.It is required when allocating a new block to store data for ArmatureModifierData.
- 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:
ArmatureModifierData armaturemodifierdata = ...; CPointer<Object> p = armaturemodifierdata.__dna__addressof(ArmatureModifierData.__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__deformflag
public static final long[] __DNA__FIELD__deformflag
Field descriptor (offset) for struct member 'deformflag'.Field Documentation
Blender Source Code
eArmature_DeformFlag use instead of #bArmature.deformflag.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
ArmatureModifierData armaturemodifierdata = ...; CPointer<Object> p = armaturemodifierdata.__dna__addressof(ArmatureModifierData.__DNA__FIELD__deformflag); CPointer<Short> p_deformflag = p.cast(new Class[]{Short.class});
Metadata
- Field: 'deformflag'
- Signature: 'short'
- Actual Size (32bit/64bit): 2/2
-
__DNA__FIELD__multi
public static final long[] __DNA__FIELD__multi
Field descriptor (offset) for struct member 'multi'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
ArmatureModifierData armaturemodifierdata = ...; CPointer<Object> p = armaturemodifierdata.__dna__addressof(ArmatureModifierData.__DNA__FIELD__multi); CPointer<Short> p_multi = p.cast(new Class[]{Short.class});
Metadata
- Field: 'multi'
- Signature: 'short'
- Actual Size (32bit/64bit): 2/2
-
__DNA__FIELD___pad2
public static final long[] __DNA__FIELD___pad2
Field descriptor (offset) for struct member '_pad2'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
ArmatureModifierData armaturemodifierdata = ...; CPointer<Object> p = armaturemodifierdata.__dna__addressof(ArmatureModifierData.__DNA__FIELD___pad2); CPointer<CArrayFacade<Byte>> p__pad2 = p.cast(new Class[]{CArrayFacade.class, Byte.class});
Metadata
- Field: '_pad2'
- Signature: 'char[4]'
- Actual Size (32bit/64bit): 4/4
-
__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:
ArmatureModifierData armaturemodifierdata = ...; CPointer<Object> p = armaturemodifierdata.__dna__addressof(ArmatureModifierData.__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__defgrp_name
public static final long[] __DNA__FIELD__defgrp_name
Field descriptor (offset) for struct member 'defgrp_name'.Field Documentation
Blender Source Code
MAX_VGROUP_NAME.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
ArmatureModifierData armaturemodifierdata = ...; CPointer<Object> p = armaturemodifierdata.__dna__addressof(ArmatureModifierData.__DNA__FIELD__defgrp_name); CPointer<CArrayFacade<Byte>> p_defgrp_name = p.cast(new Class[]{CArrayFacade.class, Byte.class});
Metadata
- Field: 'defgrp_name'
- Signature: 'char[64]'
- Actual Size (32bit/64bit): 64/64
-
-
Constructor Detail
-
ArmatureModifierData
public ArmatureModifierData(long __address, Block __block, BlockTable __blockTable)
-
ArmatureModifierData
protected ArmatureModifierData(ArmatureModifierData 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
-
getDeformflag
public short getDeformflag() throws java.io.IOException
Get method for struct member 'deformflag'.Field Documentation
Blender Source Code
eArmature_DeformFlag use instead of #bArmature.deformflag.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__deformflag
-
setDeformflag
public void setDeformflag(short deformflag) throws java.io.IOException
Set method for struct member 'deformflag'.Field Documentation
Blender Source Code
eArmature_DeformFlag use instead of #bArmature.deformflag.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__deformflag
-
getMulti
public short getMulti() throws java.io.IOException
Get method for struct member 'multi'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__multi
-
setMulti
public void setMulti(short multi) throws java.io.IOException
Set method for struct member 'multi'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__multi
-
get_pad2
public CArrayFacade<java.lang.Byte> get_pad2() throws java.io.IOException
Get method for struct member '_pad2'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad2
-
set_pad2
public void set_pad2(CArrayFacade<java.lang.Byte> _pad2) throws java.io.IOException
Set method for struct member '_pad2'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad2
-
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
-
getDefgrp_name
public CArrayFacade<java.lang.Byte> getDefgrp_name() throws java.io.IOException
Get method for struct member 'defgrp_name'.Field Documentation
Blender Source Code
MAX_VGROUP_NAME.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__defgrp_name
-
setDefgrp_name
public void setDefgrp_name(CArrayFacade<java.lang.Byte> defgrp_name) throws java.io.IOException
Set method for struct member 'defgrp_name'.Field Documentation
Blender Source Code
MAX_VGROUP_NAME.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__defgrp_name
-
__io__addressof
public CPointer<ArmatureModifierData> __io__addressof()
Instantiates a pointer on this instance.
-
-