public class BoidRuleFollowLeader extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__cfra
Field descriptor (offset) for struct member 'cfra'.
|
static long[] |
__DNA__FIELD__distance
Field descriptor (offset) for struct member 'distance'.
|
static long[] |
__DNA__FIELD__loc
Field descriptor (offset) for struct member 'loc'.
|
static long[] |
__DNA__FIELD__ob
Field descriptor (offset) for struct member 'ob'.
|
static long[] |
__DNA__FIELD__oloc
Field descriptor (offset) for struct member 'oloc'.
|
static long[] |
__DNA__FIELD__options
Field descriptor (offset) for struct member 'options'.
|
static long[] |
__DNA__FIELD__queue_size
Field descriptor (offset) for struct member 'queue_size'.
|
static long[] |
__DNA__FIELD__rule
Field descriptor (offset) for struct member 'rule'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct BoidRuleFollowLeader.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
protected |
BoidRuleFollowLeader(BoidRuleFollowLeader that) |
|
BoidRuleFollowLeader(long __address,
Block __block,
BlockTable __blockTable) |
Modifier and Type | Method and Description |
---|---|
CPointer<BoidRuleFollowLeader> |
__io__addressof()
Instantiates a pointer on this instance.
|
float |
getCfra()
Get method for struct member 'cfra'.
|
float |
getDistance()
Get method for struct member 'distance'.
|
CArrayFacade<java.lang.Float> |
getLoc()
Get method for struct member 'loc'.
|
CPointer<BlenderObject> |
getOb()
Get method for struct member 'ob'.
|
CArrayFacade<java.lang.Float> |
getOloc()
Get method for struct member 'oloc'.
|
int |
getOptions()
Get method for struct member 'options'.
|
int |
getQueue_size()
Get method for struct member 'queue_size'.
|
BoidRule |
getRule()
Get method for struct member 'rule'.
|
void |
setCfra(float cfra)
Set method for struct member 'cfra'.
|
void |
setDistance(float distance)
Set method for struct member 'distance'.
|
void |
setLoc(CArrayFacade<java.lang.Float> loc)
Set method for struct member 'loc'.
|
void |
setOb(CPointer<BlenderObject> ob)
Set method for struct member 'ob'.
|
void |
setOloc(CArrayFacade<java.lang.Float> oloc)
Set method for struct member 'oloc'.
|
void |
setOptions(int options)
Set method for struct member 'options'.
|
void |
setQueue_size(int queue_size)
Set method for struct member 'queue_size'.
|
void |
setRule(BoidRule rule)
Set method for struct member 'rule'.
|
__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 BoidRuleFollowLeader.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__rule
This is how you get a reference on the corresponding field in the struct:
BoidRuleFollowLeader boidrulefollowleader = ...; CPointer<Object> p = boidrulefollowleader.__dna__addressof(BoidRuleFollowLeader.__DNA__FIELD__rule); CPointer<BoidRule> p_rule = p.cast(new Class[]{BoidRule.class});
public static final long[] __DNA__FIELD__ob
This is how you get a reference on the corresponding field in the struct:
BoidRuleFollowLeader boidrulefollowleader = ...; CPointer<Object> p = boidrulefollowleader.__dna__addressof(BoidRuleFollowLeader.__DNA__FIELD__ob); CPointer<CPointer<BlenderObject>> p_ob = p.cast(new Class[]{CPointer.class, BlenderObject.class});
public static final long[] __DNA__FIELD__loc
This is how you get a reference on the corresponding field in the struct:
BoidRuleFollowLeader boidrulefollowleader = ...; CPointer<Object> p = boidrulefollowleader.__dna__addressof(BoidRuleFollowLeader.__DNA__FIELD__loc); CPointer<CArrayFacade<Float>> p_loc = p.cast(new Class[]{CArrayFacade.class, Float.class});
public static final long[] __DNA__FIELD__oloc
This is how you get a reference on the corresponding field in the struct:
BoidRuleFollowLeader boidrulefollowleader = ...; CPointer<Object> p = boidrulefollowleader.__dna__addressof(BoidRuleFollowLeader.__DNA__FIELD__oloc); CPointer<CArrayFacade<Float>> p_oloc = p.cast(new Class[]{CArrayFacade.class, Float.class});
public static final long[] __DNA__FIELD__cfra
This is how you get a reference on the corresponding field in the struct:
BoidRuleFollowLeader boidrulefollowleader = ...; CPointer<Object> p = boidrulefollowleader.__dna__addressof(BoidRuleFollowLeader.__DNA__FIELD__cfra); CPointer<Float> p_cfra = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__distance
This is how you get a reference on the corresponding field in the struct:
BoidRuleFollowLeader boidrulefollowleader = ...; CPointer<Object> p = boidrulefollowleader.__dna__addressof(BoidRuleFollowLeader.__DNA__FIELD__distance); CPointer<Float> p_distance = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__options
This is how you get a reference on the corresponding field in the struct:
BoidRuleFollowLeader boidrulefollowleader = ...; CPointer<Object> p = boidrulefollowleader.__dna__addressof(BoidRuleFollowLeader.__DNA__FIELD__options); CPointer<Integer> p_options = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__queue_size
This is how you get a reference on the corresponding field in the struct:
BoidRuleFollowLeader boidrulefollowleader = ...; CPointer<Object> p = boidrulefollowleader.__dna__addressof(BoidRuleFollowLeader.__DNA__FIELD__queue_size); CPointer<Integer> p_queue_size = p.cast(new Class[]{Integer.class});
public BoidRuleFollowLeader(long __address, Block __block, BlockTable __blockTable)
protected BoidRuleFollowLeader(BoidRuleFollowLeader that)
public BoidRule getRule() throws java.io.IOException
java.io.IOException
__DNA__FIELD__rule
public void setRule(BoidRule rule) throws java.io.IOException
java.io.IOException
__DNA__FIELD__rule
public CPointer<BlenderObject> getOb() throws java.io.IOException
java.io.IOException
__DNA__FIELD__ob
public void setOb(CPointer<BlenderObject> ob) throws java.io.IOException
java.io.IOException
__DNA__FIELD__ob
public CArrayFacade<java.lang.Float> getLoc() throws java.io.IOException
java.io.IOException
__DNA__FIELD__loc
public void setLoc(CArrayFacade<java.lang.Float> loc) throws java.io.IOException
java.io.IOException
__DNA__FIELD__loc
public CArrayFacade<java.lang.Float> getOloc() throws java.io.IOException
java.io.IOException
__DNA__FIELD__oloc
public void setOloc(CArrayFacade<java.lang.Float> oloc) throws java.io.IOException
java.io.IOException
__DNA__FIELD__oloc
public float getCfra() throws java.io.IOException
java.io.IOException
__DNA__FIELD__cfra
public void setCfra(float cfra) throws java.io.IOException
java.io.IOException
__DNA__FIELD__cfra
public float getDistance() throws java.io.IOException
java.io.IOException
__DNA__FIELD__distance
public void setDistance(float distance) throws java.io.IOException
java.io.IOException
__DNA__FIELD__distance
public int getOptions() throws java.io.IOException
java.io.IOException
__DNA__FIELD__options
public void setOptions(int options) throws java.io.IOException
java.io.IOException
__DNA__FIELD__options
public int getQueue_size() throws java.io.IOException
java.io.IOException
__DNA__FIELD__queue_size
public void setQueue_size(int queue_size) throws java.io.IOException
java.io.IOException
__DNA__FIELD__queue_size
public CPointer<BoidRuleFollowLeader> __io__addressof()