public class LatticeModifierData extends CFacade
Modifier and Type | Field and Description |
---|---|
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__pad
Field descriptor (offset) for struct member 'pad'.
|
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.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
protected |
LatticeModifierData(LatticeModifierData that) |
|
LatticeModifierData(long __address,
Block __block,
BlockTable __blockTable) |
Modifier and Type | Method and Description |
---|---|
CPointer<LatticeModifierData> |
__io__addressof()
Instantiates a pointer on this instance.
|
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'.
|
CArrayFacade<java.lang.Byte> |
getPad()
Get method for struct member 'pad'.
|
float |
getStrength()
Get method for struct member 'strength'.
|
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 |
setPad(CArrayFacade<java.lang.Byte> pad)
Set method for struct member 'pad'.
|
void |
setStrength(float strength)
Set method for struct member 'strength'.
|
__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 LatticeModifierData.
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:
LatticeModifierData latticemodifierdata = ...; CPointer<Object> p = latticemodifierdata.__dna__addressof(LatticeModifierData.__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:
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});
public static final long[] __DNA__FIELD__name
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});
public static final long[] __DNA__FIELD__strength
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});
public static final long[] __DNA__FIELD__pad
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});
public LatticeModifierData(long __address, Block __block, BlockTable __blockTable)
protected LatticeModifierData(LatticeModifierData 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 CArrayFacade<java.lang.Byte> getName() throws java.io.IOException
java.io.IOException
__DNA__FIELD__name
public void setName(CArrayFacade<java.lang.Byte> name) throws java.io.IOException
java.io.IOException
__DNA__FIELD__name
public float getStrength() throws java.io.IOException
java.io.IOException
__DNA__FIELD__strength
public void setStrength(float strength) throws java.io.IOException
java.io.IOException
__DNA__FIELD__strength
public CArrayFacade<java.lang.Byte> getPad() throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad
public void setPad(CArrayFacade<java.lang.Byte> pad) throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad
public CPointer<LatticeModifierData> __io__addressof()