public class SmoothModifierData 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__fac
Field descriptor (offset) for struct member 'fac'.
|
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__repeat
Field descriptor (offset) for struct member 'repeat'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct SmoothModifierData.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
|
SmoothModifierData(long __address,
Block __block,
BlockTable __blockTable) |
protected |
SmoothModifierData(SmoothModifierData that) |
Modifier and Type | Method and Description |
---|---|
CPointer<SmoothModifierData> |
__io__addressof()
Instantiates a pointer on this instance.
|
CArrayFacade<java.lang.Byte> |
getDefgrp_name()
Get method for struct member 'defgrp_name'.
|
float |
getFac()
Get method for struct member 'fac'.
|
short |
getFlag()
Get method for struct member 'flag'.
|
ModifierData |
getModifier()
Get method for struct member 'modifier'.
|
short |
getRepeat()
Get method for struct member 'repeat'.
|
void |
setDefgrp_name(CArrayFacade<java.lang.Byte> defgrp_name)
Set method for struct member 'defgrp_name'.
|
void |
setFac(float fac)
Set method for struct member 'fac'.
|
void |
setFlag(short flag)
Set method for struct member 'flag'.
|
void |
setModifier(ModifierData modifier)
Set method for struct member 'modifier'.
|
void |
setRepeat(short repeat)
Set method for struct member 'repeat'.
|
__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 SmoothModifierData.
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:
SmoothModifierData smoothmodifierdata = ...; CPointer<Object> p = smoothmodifierdata.__dna__addressof(SmoothModifierData.__DNA__FIELD__modifier); CPointer<ModifierData> p_modifier = p.cast(new Class[]{ModifierData.class});
public static final long[] __DNA__FIELD__fac
This is how you get a reference on the corresponding field in the struct:
SmoothModifierData smoothmodifierdata = ...; CPointer<Object> p = smoothmodifierdata.__dna__addressof(SmoothModifierData.__DNA__FIELD__fac); CPointer<Float> p_fac = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__defgrp_name
This is how you get a reference on the corresponding field in the struct:
SmoothModifierData smoothmodifierdata = ...; CPointer<Object> p = smoothmodifierdata.__dna__addressof(SmoothModifierData.__DNA__FIELD__defgrp_name); CPointer<CArrayFacade<Byte>> p_defgrp_name = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public static final long[] __DNA__FIELD__flag
This is how you get a reference on the corresponding field in the struct:
SmoothModifierData smoothmodifierdata = ...; CPointer<Object> p = smoothmodifierdata.__dna__addressof(SmoothModifierData.__DNA__FIELD__flag); CPointer<Short> p_flag = p.cast(new Class[]{Short.class});
public static final long[] __DNA__FIELD__repeat
This is how you get a reference on the corresponding field in the struct:
SmoothModifierData smoothmodifierdata = ...; CPointer<Object> p = smoothmodifierdata.__dna__addressof(SmoothModifierData.__DNA__FIELD__repeat); CPointer<Short> p_repeat = p.cast(new Class[]{Short.class});
public SmoothModifierData(long __address, Block __block, BlockTable __blockTable)
protected SmoothModifierData(SmoothModifierData 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 float getFac() throws java.io.IOException
java.io.IOException
__DNA__FIELD__fac
public void setFac(float fac) throws java.io.IOException
java.io.IOException
__DNA__FIELD__fac
public CArrayFacade<java.lang.Byte> getDefgrp_name() throws java.io.IOException
java.io.IOException
__DNA__FIELD__defgrp_name
public void setDefgrp_name(CArrayFacade<java.lang.Byte> defgrp_name) throws java.io.IOException
java.io.IOException
__DNA__FIELD__defgrp_name
public short getFlag() throws java.io.IOException
java.io.IOException
__DNA__FIELD__flag
public void setFlag(short flag) throws java.io.IOException
java.io.IOException
__DNA__FIELD__flag
public short getRepeat() throws java.io.IOException
java.io.IOException
__DNA__FIELD__repeat
public void setRepeat(short repeat) throws java.io.IOException
java.io.IOException
__DNA__FIELD__repeat
public CPointer<SmoothModifierData> __io__addressof()