public class MaskSpline extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.
|
static long[] |
__DNA__FIELD__next
Field descriptor (offset) for struct member 'next'.
|
static long[] |
__DNA__FIELD__offset_mode
Field descriptor (offset) for struct member 'offset_mode'.
|
static long[] |
__DNA__FIELD__parent
Field descriptor (offset) for struct member 'parent'.
|
static long[] |
__DNA__FIELD__points
Field descriptor (offset) for struct member 'points'.
|
static long[] |
__DNA__FIELD__points_deform
Field descriptor (offset) for struct member 'points_deform'.
|
static long[] |
__DNA__FIELD__prev
Field descriptor (offset) for struct member 'prev'.
|
static long[] |
__DNA__FIELD__tot_point
Field descriptor (offset) for struct member 'tot_point'.
|
static long[] |
__DNA__FIELD__weight_interp
Field descriptor (offset) for struct member 'weight_interp'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct MaskSpline.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
|
MaskSpline(long __address,
Block __block,
BlockTable __blockTable) |
protected |
MaskSpline(MaskSpline that) |
Modifier and Type | Method and Description |
---|---|
CPointer<MaskSpline> |
__io__addressof()
Instantiates a pointer on this instance.
|
short |
getFlag()
Get method for struct member 'flag'.
|
CPointer<MaskSpline> |
getNext()
Get method for struct member 'next'.
|
byte |
getOffset_mode()
Get method for struct member 'offset_mode'.
|
MaskParent |
getParent()
Get method for struct member 'parent'.
|
CPointer<MaskSplinePoint> |
getPoints_deform()
Get method for struct member 'points_deform'.
|
CPointer<MaskSplinePoint> |
getPoints()
Get method for struct member 'points'.
|
CPointer<MaskSpline> |
getPrev()
Get method for struct member 'prev'.
|
int |
getTot_point()
Get method for struct member 'tot_point'.
|
byte |
getWeight_interp()
Get method for struct member 'weight_interp'.
|
void |
setFlag(short flag)
Set method for struct member 'flag'.
|
void |
setNext(CPointer<MaskSpline> next)
Set method for struct member 'next'.
|
void |
setOffset_mode(byte offset_mode)
Set method for struct member 'offset_mode'.
|
void |
setParent(MaskParent parent)
Set method for struct member 'parent'.
|
void |
setPoints_deform(CPointer<MaskSplinePoint> points_deform)
Set method for struct member 'points_deform'.
|
void |
setPoints(CPointer<MaskSplinePoint> points)
Set method for struct member 'points'.
|
void |
setPrev(CPointer<MaskSpline> prev)
Set method for struct member 'prev'.
|
void |
setTot_point(int tot_point)
Set method for struct member 'tot_point'.
|
void |
setWeight_interp(byte weight_interp)
Set method for struct member 'weight_interp'.
|
__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 MaskSpline.
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:
MaskSpline maskspline = ...; CPointer<Object> p = maskspline.__dna__addressof(MaskSpline.__DNA__FIELD__next); CPointer<CPointer<MaskSpline>> p_next = p.cast(new Class[]{CPointer.class, MaskSpline.class});
public static final long[] __DNA__FIELD__prev
This is how you get a reference on the corresponding field in the struct:
MaskSpline maskspline = ...; CPointer<Object> p = maskspline.__dna__addressof(MaskSpline.__DNA__FIELD__prev); CPointer<CPointer<MaskSpline>> p_prev = p.cast(new Class[]{CPointer.class, MaskSpline.class});
public static final long[] __DNA__FIELD__flag
Different spline flag (closed, ...).
This is how you get a reference on the corresponding field in the struct:
MaskSpline maskspline = ...; CPointer<Object> p = maskspline.__dna__addressof(MaskSpline.__DNA__FIELD__flag); CPointer<Short> p_flag = p.cast(new Class[]{Short.class});
public static final long[] __DNA__FIELD__offset_mode
Feather offset method.
This is how you get a reference on the corresponding field in the struct:
MaskSpline maskspline = ...; CPointer<Object> p = maskspline.__dna__addressof(MaskSpline.__DNA__FIELD__offset_mode); CPointer<Byte> p_offset_mode = p.cast(new Class[]{Byte.class});
public static final long[] __DNA__FIELD__weight_interp
Weight interpolation.
This is how you get a reference on the corresponding field in the struct:
MaskSpline maskspline = ...; CPointer<Object> p = maskspline.__dna__addressof(MaskSpline.__DNA__FIELD__weight_interp); CPointer<Byte> p_weight_interp = p.cast(new Class[]{Byte.class});
public static final long[] __DNA__FIELD__tot_point
Total number of points.
This is how you get a reference on the corresponding field in the struct:
MaskSpline maskspline = ...; CPointer<Object> p = maskspline.__dna__addressof(MaskSpline.__DNA__FIELD__tot_point); CPointer<Integer> p_tot_point = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__points
Points which defines spline itself.
This is how you get a reference on the corresponding field in the struct:
MaskSpline maskspline = ...; CPointer<Object> p = maskspline.__dna__addressof(MaskSpline.__DNA__FIELD__points); CPointer<CPointer<MaskSplinePoint>> p_points = p.cast(new Class[]{CPointer.class, MaskSplinePoint.class});
public static final long[] __DNA__FIELD__parent
Parenting information of the whole spline.
This is how you get a reference on the corresponding field in the struct:
MaskSpline maskspline = ...; CPointer<Object> p = maskspline.__dna__addressof(MaskSpline.__DNA__FIELD__parent); CPointer<MaskParent> p_parent = p.cast(new Class[]{MaskParent.class});
public static final long[] __DNA__FIELD__points_deform
Deformed copy of 'points' BezTriple
data - not saved.
This is how you get a reference on the corresponding field in the struct:
MaskSpline maskspline = ...; CPointer<Object> p = maskspline.__dna__addressof(MaskSpline.__DNA__FIELD__points_deform); CPointer<CPointer<MaskSplinePoint>> p_points_deform = p.cast(new Class[]{CPointer.class, MaskSplinePoint.class});
public MaskSpline(long __address, Block __block, BlockTable __blockTable)
protected MaskSpline(MaskSpline that)
public CPointer<MaskSpline> getNext() throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public void setNext(CPointer<MaskSpline> next) throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public CPointer<MaskSpline> getPrev() throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public void setPrev(CPointer<MaskSpline> prev) throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public short getFlag() throws java.io.IOException
Different spline flag (closed, ...).
java.io.IOException
__DNA__FIELD__flag
public void setFlag(short flag) throws java.io.IOException
Different spline flag (closed, ...).
java.io.IOException
__DNA__FIELD__flag
public byte getOffset_mode() throws java.io.IOException
Feather offset method.
java.io.IOException
__DNA__FIELD__offset_mode
public void setOffset_mode(byte offset_mode) throws java.io.IOException
Feather offset method.
java.io.IOException
__DNA__FIELD__offset_mode
public byte getWeight_interp() throws java.io.IOException
Weight interpolation.
java.io.IOException
__DNA__FIELD__weight_interp
public void setWeight_interp(byte weight_interp) throws java.io.IOException
Weight interpolation.
java.io.IOException
__DNA__FIELD__weight_interp
public int getTot_point() throws java.io.IOException
Total number of points.
java.io.IOException
__DNA__FIELD__tot_point
public void setTot_point(int tot_point) throws java.io.IOException
Total number of points.
java.io.IOException
__DNA__FIELD__tot_point
public CPointer<MaskSplinePoint> getPoints() throws java.io.IOException
Points which defines spline itself.
java.io.IOException
__DNA__FIELD__points
public void setPoints(CPointer<MaskSplinePoint> points) throws java.io.IOException
Points which defines spline itself.
java.io.IOException
__DNA__FIELD__points
public MaskParent getParent() throws java.io.IOException
Parenting information of the whole spline.
java.io.IOException
__DNA__FIELD__parent
public void setParent(MaskParent parent) throws java.io.IOException
Parenting information of the whole spline.
java.io.IOException
__DNA__FIELD__parent
public CPointer<MaskSplinePoint> getPoints_deform() throws java.io.IOException
Deformed copy of 'points' BezTriple
data - not saved.
java.io.IOException
__DNA__FIELD__points_deform
public void setPoints_deform(CPointer<MaskSplinePoint> points_deform) throws java.io.IOException
Deformed copy of 'points' BezTriple
data - not saved.
java.io.IOException
__DNA__FIELD__points_deform
public CPointer<MaskSpline> __io__addressof()