public class ArmatureModifierData extends CFacade
Modifier and Type | Field and Description |
---|---|
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 long[] |
__DNA__FIELD__pad2
Field descriptor (offset) for struct member 'pad2'.
|
static long[] |
__DNA__FIELD__prevCos
Field descriptor (offset) for struct member 'prevCos'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct ArmatureModifierData.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
protected |
ArmatureModifierData(ArmatureModifierData that) |
|
ArmatureModifierData(long __address,
Block __block,
BlockTable __blockTable) |
Modifier and Type | Method and Description |
---|---|
CPointer<ArmatureModifierData> |
__io__addressof()
Instantiates a pointer on this instance.
|
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'.
|
int |
getPad2()
Get method for struct member 'pad2'.
|
CPointer<java.lang.Float> |
getPrevCos()
Get method for struct member 'prevCos'.
|
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'.
|
void |
setPad2(int pad2)
Set method for struct member 'pad2'.
|
void |
setPrevCos(CPointer<java.lang.Float> prevCos)
Set method for struct member 'prevCos'.
|
__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 ArmatureModifierData.
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:
ArmatureModifierData armaturemodifierdata = ...; CPointer<Object> p = armaturemodifierdata.__dna__addressof(ArmatureModifierData.__DNA__FIELD__modifier); CPointer<ModifierData> p_modifier = p.cast(new Class[]{ModifierData.class});
public static final long[] __DNA__FIELD__deformflag
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});
public static final long[] __DNA__FIELD__multi
deformflag replaces armature->deformflag
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});
public static final long[] __DNA__FIELD__pad2
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<Integer> p_pad2 = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__object
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});
public static final long[] __DNA__FIELD__prevCos
stored input of previous modifier, for vertexgroup blending
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__prevCos); CPointer<CPointer<Float>> p_prevCos = p.cast(new Class[]{CPointer.class, Float.class});
public static final long[] __DNA__FIELD__defgrp_name
MAX_VGROUP_NAME
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});
public ArmatureModifierData(long __address, Block __block, BlockTable __blockTable)
protected ArmatureModifierData(ArmatureModifierData 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 short getDeformflag() throws java.io.IOException
java.io.IOException
__DNA__FIELD__deformflag
public void setDeformflag(short deformflag) throws java.io.IOException
java.io.IOException
__DNA__FIELD__deformflag
public short getMulti() throws java.io.IOException
deformflag replaces armature->deformflag
java.io.IOException
__DNA__FIELD__multi
public void setMulti(short multi) throws java.io.IOException
deformflag replaces armature->deformflag
java.io.IOException
__DNA__FIELD__multi
public int getPad2() throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad2
public void setPad2(int pad2) throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad2
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 CPointer<java.lang.Float> getPrevCos() throws java.io.IOException
stored input of previous modifier, for vertexgroup blending
java.io.IOException
__DNA__FIELD__prevCos
public void setPrevCos(CPointer<java.lang.Float> prevCos) throws java.io.IOException
stored input of previous modifier, for vertexgroup blending
java.io.IOException
__DNA__FIELD__prevCos
public CArrayFacade<java.lang.Byte> getDefgrp_name() throws java.io.IOException
MAX_VGROUP_NAME
java.io.IOException
__DNA__FIELD__defgrp_name
public void setDefgrp_name(CArrayFacade<java.lang.Byte> defgrp_name) throws java.io.IOException
MAX_VGROUP_NAME
java.io.IOException
__DNA__FIELD__defgrp_name
public CPointer<ArmatureModifierData> __io__addressof()