public class BuildModifierData extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.
|
static long[] |
__DNA__FIELD__length
Field descriptor (offset) for struct member 'length'.
|
static long[] |
__DNA__FIELD__modifier
Field descriptor (offset) for struct member 'modifier'.
|
static long[] |
__DNA__FIELD__randomize
Field descriptor (offset) for struct member 'randomize'.
|
static long[] |
__DNA__FIELD__seed
Field descriptor (offset) for struct member 'seed'.
|
static long[] |
__DNA__FIELD__start
Field descriptor (offset) for struct member 'start'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct BuildModifierData.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
protected |
BuildModifierData(BuildModifierData that) |
|
BuildModifierData(long __address,
Block __block,
BlockTable __blockTable) |
Modifier and Type | Method and Description |
---|---|
CPointer<BuildModifierData> |
__io__addressof()
Instantiates a pointer on this instance.
|
short |
getFlag()
Get method for struct member 'flag'.
|
float |
getLength()
Get method for struct member 'length'.
|
ModifierData |
getModifier()
Get method for struct member 'modifier'.
|
short |
getRandomize()
Get method for struct member 'randomize'.
|
int |
getSeed()
Get method for struct member 'seed'.
|
float |
getStart()
Get method for struct member 'start'.
|
void |
setFlag(short flag)
Set method for struct member 'flag'.
|
void |
setLength(float length)
Set method for struct member 'length'.
|
void |
setModifier(ModifierData modifier)
Set method for struct member 'modifier'.
|
void |
setRandomize(short randomize)
Set method for struct member 'randomize'.
|
void |
setSeed(int seed)
Set method for struct member 'seed'.
|
void |
setStart(float start)
Set method for struct member 'start'.
|
__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 BuildModifierData.
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:
BuildModifierData buildmodifierdata = ...; CPointer<Object> p = buildmodifierdata.__dna__addressof(BuildModifierData.__DNA__FIELD__modifier); CPointer<ModifierData> p_modifier = p.cast(new Class[]{ModifierData.class});
public static final long[] __DNA__FIELD__start
This is how you get a reference on the corresponding field in the struct:
BuildModifierData buildmodifierdata = ...; CPointer<Object> p = buildmodifierdata.__dna__addressof(BuildModifierData.__DNA__FIELD__start); CPointer<Float> p_start = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__length
This is how you get a reference on the corresponding field in the struct:
BuildModifierData buildmodifierdata = ...; CPointer<Object> p = buildmodifierdata.__dna__addressof(BuildModifierData.__DNA__FIELD__length); CPointer<Float> p_length = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__flag
This is how you get a reference on the corresponding field in the struct:
BuildModifierData buildmodifierdata = ...; CPointer<Object> p = buildmodifierdata.__dna__addressof(BuildModifierData.__DNA__FIELD__flag); CPointer<Short> p_flag = p.cast(new Class[]{Short.class});
public static final long[] __DNA__FIELD__randomize
(bool) whether order of vertices is randomized - legacy files (for readfile conversion)
This is how you get a reference on the corresponding field in the struct:
BuildModifierData buildmodifierdata = ...; CPointer<Object> p = buildmodifierdata.__dna__addressof(BuildModifierData.__DNA__FIELD__randomize); CPointer<Short> p_randomize = p.cast(new Class[]{Short.class});
public static final long[] __DNA__FIELD__seed
(int) random seed
This is how you get a reference on the corresponding field in the struct:
BuildModifierData buildmodifierdata = ...; CPointer<Object> p = buildmodifierdata.__dna__addressof(BuildModifierData.__DNA__FIELD__seed); CPointer<Integer> p_seed = p.cast(new Class[]{Integer.class});
public BuildModifierData(long __address, Block __block, BlockTable __blockTable)
protected BuildModifierData(BuildModifierData 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 getStart() throws java.io.IOException
java.io.IOException
__DNA__FIELD__start
public void setStart(float start) throws java.io.IOException
java.io.IOException
__DNA__FIELD__start
public float getLength() throws java.io.IOException
java.io.IOException
__DNA__FIELD__length
public void setLength(float length) throws java.io.IOException
java.io.IOException
__DNA__FIELD__length
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 getRandomize() throws java.io.IOException
(bool) whether order of vertices is randomized - legacy files (for readfile conversion)
java.io.IOException
__DNA__FIELD__randomize
public void setRandomize(short randomize) throws java.io.IOException
(bool) whether order of vertices is randomized - legacy files (for readfile conversion)
java.io.IOException
__DNA__FIELD__randomize
public int getSeed() throws java.io.IOException
(int) random seed
java.io.IOException
__DNA__FIELD__seed
public void setSeed(int seed) throws java.io.IOException
(int) random seed
java.io.IOException
__DNA__FIELD__seed
public CPointer<BuildModifierData> __io__addressof()