public class NodeHueSat extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__hue
Field descriptor (offset) for struct member 'hue'.
|
static long[] |
__DNA__FIELD__sat
Field descriptor (offset) for struct member 'sat'.
|
static long[] |
__DNA__FIELD__val
Field descriptor (offset) for struct member 'val'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct NodeHueSat.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
|
NodeHueSat(long __address,
Block __block,
BlockTable __blockTable) |
protected |
NodeHueSat(NodeHueSat that) |
Modifier and Type | Method and Description |
---|---|
CPointer<NodeHueSat> |
__io__addressof()
Instantiates a pointer on this instance.
|
float |
getHue()
Get method for struct member 'hue'.
|
float |
getSat()
Get method for struct member 'sat'.
|
float |
getVal()
Get method for struct member 'val'.
|
void |
setHue(float hue)
Set method for struct member 'hue'.
|
void |
setSat(float sat)
Set method for struct member 'sat'.
|
void |
setVal(float val)
Set method for struct member 'val'.
|
__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 NodeHueSat.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__hue
This is how you get a reference on the corresponding field in the struct:
NodeHueSat nodehuesat = ...; CPointer<Object> p = nodehuesat.__dna__addressof(NodeHueSat.__DNA__FIELD__hue); CPointer<Float> p_hue = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__sat
This is how you get a reference on the corresponding field in the struct:
NodeHueSat nodehuesat = ...; CPointer<Object> p = nodehuesat.__dna__addressof(NodeHueSat.__DNA__FIELD__sat); CPointer<Float> p_sat = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__val
This is how you get a reference on the corresponding field in the struct:
NodeHueSat nodehuesat = ...; CPointer<Object> p = nodehuesat.__dna__addressof(NodeHueSat.__DNA__FIELD__val); CPointer<Float> p_val = p.cast(new Class[]{Float.class});
public NodeHueSat(long __address, Block __block, BlockTable __blockTable)
protected NodeHueSat(NodeHueSat that)
public float getHue() throws java.io.IOException
java.io.IOException
__DNA__FIELD__hue
public void setHue(float hue) throws java.io.IOException
java.io.IOException
__DNA__FIELD__hue
public float getSat() throws java.io.IOException
java.io.IOException
__DNA__FIELD__sat
public void setSat(float sat) throws java.io.IOException
java.io.IOException
__DNA__FIELD__sat
public float getVal() throws java.io.IOException
java.io.IOException
__DNA__FIELD__val
public void setVal(float val) throws java.io.IOException
java.io.IOException
__DNA__FIELD__val
public CPointer<NodeHueSat> __io__addressof()