public class PaintCurvePoint extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__bez
Field descriptor (offset) for struct member 'bez'.
|
static long[] |
__DNA__FIELD__pressure
Field descriptor (offset) for struct member 'pressure'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct PaintCurvePoint.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
|
PaintCurvePoint(long __address,
Block __block,
BlockTable __blockTable) |
protected |
PaintCurvePoint(PaintCurvePoint that) |
Modifier and Type | Method and Description |
---|---|
CPointer<PaintCurvePoint> |
__io__addressof()
Instantiates a pointer on this instance.
|
BezTriple |
getBez()
Get method for struct member 'bez'.
|
float |
getPressure()
Get method for struct member 'pressure'.
|
void |
setBez(BezTriple bez)
Set method for struct member 'bez'.
|
void |
setPressure(float pressure)
Set method for struct member 'pressure'.
|
__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 PaintCurvePoint.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__bez
This is how you get a reference on the corresponding field in the struct:
PaintCurvePoint paintcurvepoint = ...; CPointer<Object> p = paintcurvepoint.__dna__addressof(PaintCurvePoint.__DNA__FIELD__bez); CPointer<BezTriple> p_bez = p.cast(new Class[]{BezTriple.class});
public static final long[] __DNA__FIELD__pressure
This is how you get a reference on the corresponding field in the struct:
PaintCurvePoint paintcurvepoint = ...; CPointer<Object> p = paintcurvepoint.__dna__addressof(PaintCurvePoint.__DNA__FIELD__pressure); CPointer<Float> p_pressure = p.cast(new Class[]{Float.class});
public PaintCurvePoint(long __address, Block __block, BlockTable __blockTable)
protected PaintCurvePoint(PaintCurvePoint that)
public BezTriple getBez() throws java.io.IOException
java.io.IOException
__DNA__FIELD__bez
public void setBez(BezTriple bez) throws java.io.IOException
java.io.IOException
__DNA__FIELD__bez
public float getPressure() throws java.io.IOException
java.io.IOException
__DNA__FIELD__pressure
public void setPressure(float pressure) throws java.io.IOException
java.io.IOException
__DNA__FIELD__pressure
public CPointer<PaintCurvePoint> __io__addressof()