public class bGPDstroke extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.
|
static long[] |
__DNA__FIELD__inittime
Field descriptor (offset) for struct member 'inittime'.
|
static long[] |
__DNA__FIELD__next
Field descriptor (offset) for struct member 'next'.
|
static long[] |
__DNA__FIELD__pad
Field descriptor (offset) for struct member 'pad'.
|
static long[] |
__DNA__FIELD__points
Field descriptor (offset) for struct member 'points'.
|
static long[] |
__DNA__FIELD__prev
Field descriptor (offset) for struct member 'prev'.
|
static long[] |
__DNA__FIELD__thickness
Field descriptor (offset) for struct member 'thickness'.
|
static long[] |
__DNA__FIELD__totpoints
Field descriptor (offset) for struct member 'totpoints'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct bGPDstroke.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
protected |
bGPDstroke(bGPDstroke that) |
|
bGPDstroke(long __address,
Block __block,
BlockTable __blockTable) |
Modifier and Type | Method and Description |
---|---|
CPointer<bGPDstroke> |
__io__addressof()
Instantiates a pointer on this instance.
|
short |
getFlag()
Get method for struct member 'flag'.
|
double |
getInittime()
Get method for struct member 'inittime'.
|
CPointer<bGPDstroke> |
getNext()
Get method for struct member 'next'.
|
CPointer<java.lang.Object> |
getPad()
Get method for struct member 'pad'.
|
CPointer<bGPDspoint> |
getPoints()
Get method for struct member 'points'.
|
CPointer<bGPDstroke> |
getPrev()
Get method for struct member 'prev'.
|
short |
getThickness()
Get method for struct member 'thickness'.
|
int |
getTotpoints()
Get method for struct member 'totpoints'.
|
void |
setFlag(short flag)
Set method for struct member 'flag'.
|
void |
setInittime(double inittime)
Set method for struct member 'inittime'.
|
void |
setNext(CPointer<bGPDstroke> next)
Set method for struct member 'next'.
|
void |
setPad(CPointer<java.lang.Object> pad)
Set method for struct member 'pad'.
|
void |
setPoints(CPointer<bGPDspoint> points)
Set method for struct member 'points'.
|
void |
setPrev(CPointer<bGPDstroke> prev)
Set method for struct member 'prev'.
|
void |
setThickness(short thickness)
Set method for struct member 'thickness'.
|
void |
setTotpoints(int totpoints)
Set method for struct member 'totpoints'.
|
__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 bGPDstroke.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__next
This is how you get a reference on the corresponding field in the struct:
bGPDstroke bgpdstroke = ...; CPointer<Object> p = bgpdstroke.__dna__addressof(bGPDstroke.__DNA__FIELD__next); CPointer<CPointer<bGPDstroke>> p_next = p.cast(new Class[]{CPointer.class, bGPDstroke.class});
public static final long[] __DNA__FIELD__prev
This is how you get a reference on the corresponding field in the struct:
bGPDstroke bgpdstroke = ...; CPointer<Object> p = bgpdstroke.__dna__addressof(bGPDstroke.__DNA__FIELD__prev); CPointer<CPointer<bGPDstroke>> p_prev = p.cast(new Class[]{CPointer.class, bGPDstroke.class});
public static final long[] __DNA__FIELD__points
This is how you get a reference on the corresponding field in the struct:
bGPDstroke bgpdstroke = ...; CPointer<Object> p = bgpdstroke.__dna__addressof(bGPDstroke.__DNA__FIELD__points); CPointer<CPointer<bGPDspoint>> p_points = p.cast(new Class[]{CPointer.class, bGPDspoint.class});
public static final long[] __DNA__FIELD__pad
This is how you get a reference on the corresponding field in the struct:
bGPDstroke bgpdstroke = ...; CPointer<Object> p = bgpdstroke.__dna__addressof(bGPDstroke.__DNA__FIELD__pad); CPointer<CPointer<Object>> p_pad = p.cast(new Class[]{CPointer.class, Object.class});
public static final long[] __DNA__FIELD__totpoints
This is how you get a reference on the corresponding field in the struct:
bGPDstroke bgpdstroke = ...; CPointer<Object> p = bgpdstroke.__dna__addressof(bGPDstroke.__DNA__FIELD__totpoints); CPointer<Integer> p_totpoints = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__thickness
This is how you get a reference on the corresponding field in the struct:
bGPDstroke bgpdstroke = ...; CPointer<Object> p = bgpdstroke.__dna__addressof(bGPDstroke.__DNA__FIELD__thickness); CPointer<Short> p_thickness = p.cast(new Class[]{Short.class});
public static final long[] __DNA__FIELD__flag
This is how you get a reference on the corresponding field in the struct:
bGPDstroke bgpdstroke = ...; CPointer<Object> p = bgpdstroke.__dna__addressof(bGPDstroke.__DNA__FIELD__flag); CPointer<Short> p_flag = p.cast(new Class[]{Short.class});
public static final long[] __DNA__FIELD__inittime
This is how you get a reference on the corresponding field in the struct:
bGPDstroke bgpdstroke = ...; CPointer<Object> p = bgpdstroke.__dna__addressof(bGPDstroke.__DNA__FIELD__inittime); CPointer<Double> p_inittime = p.cast(new Class[]{Double.class});
public bGPDstroke(long __address, Block __block, BlockTable __blockTable)
protected bGPDstroke(bGPDstroke that)
public CPointer<bGPDstroke> getNext() throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public void setNext(CPointer<bGPDstroke> next) throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public CPointer<bGPDstroke> getPrev() throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public void setPrev(CPointer<bGPDstroke> prev) throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public CPointer<bGPDspoint> getPoints() throws java.io.IOException
java.io.IOException
__DNA__FIELD__points
public void setPoints(CPointer<bGPDspoint> points) throws java.io.IOException
java.io.IOException
__DNA__FIELD__points
public CPointer<java.lang.Object> getPad() throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad
public void setPad(CPointer<java.lang.Object> pad) throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad
public int getTotpoints() throws java.io.IOException
java.io.IOException
__DNA__FIELD__totpoints
public void setTotpoints(int totpoints) throws java.io.IOException
java.io.IOException
__DNA__FIELD__totpoints
public short getThickness() throws java.io.IOException
java.io.IOException
__DNA__FIELD__thickness
public void setThickness(short thickness) throws java.io.IOException
java.io.IOException
__DNA__FIELD__thickness
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 double getInittime() throws java.io.IOException
java.io.IOException
__DNA__FIELD__inittime
public void setInittime(double inittime) throws java.io.IOException
java.io.IOException
__DNA__FIELD__inittime
public CPointer<bGPDstroke> __io__addressof()