Class MaskSplinePoint
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.MaskSplinePoint
-
public class MaskSplinePoint extends CFacade
Generated facet for DNA struct type 'MaskSplinePoint'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD___pad
Field descriptor (offset) for struct member '_pad'.static long[]
__DNA__FIELD__bezt
Field descriptor (offset) for struct member 'bezt'.static long[]
__DNA__FIELD__parent
Field descriptor (offset) for struct member 'parent'.static long[]
__DNA__FIELD__tot_uw
Field descriptor (offset) for struct member 'tot_uw'.static long[]
__DNA__FIELD__uw
Field descriptor (offset) for struct member 'uw'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct MaskSplinePoint.-
Fields inherited from class org.cakelab.blender.nio.CFacade
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
-
-
Constructor Summary
Constructors Modifier Constructor Description MaskSplinePoint(long __address, Block __block, BlockTable __blockTable)
protected
MaskSplinePoint(MaskSplinePoint that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<MaskSplinePoint>
__io__addressof()
Instantiates a pointer on this instance.CArrayFacade<java.lang.Byte>
get_pad()
Get method for struct member '_pad'.BezTriple
getBezt()
Get method for struct member 'bezt'.MaskParent
getParent()
Get method for struct member 'parent'.int
getTot_uw()
Get method for struct member 'tot_uw'.CPointer<MaskSplinePointUW>
getUw()
Get method for struct member 'uw'.void
set_pad(CArrayFacade<java.lang.Byte> _pad)
Set method for struct member '_pad'.void
setBezt(BezTriple bezt)
Set method for struct member 'bezt'.void
setParent(MaskParent parent)
Set method for struct member 'parent'.void
setTot_uw(int tot_uw)
Set method for struct member 'tot_uw'.void
setUw(CPointer<MaskSplinePointUW> uw)
Set method for struct member 'uw'.-
Methods inherited from class org.cakelab.blender.nio.CFacade
__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, equals, hashCode
-
-
-
-
Field Detail
-
__DNA__SDNA_INDEX
public static final int __DNA__SDNA_INDEX
This is the sdna index of the struct MaskSplinePoint.It is required when allocating a new block to store data for MaskSplinePoint.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__bezt
public static final long[] __DNA__FIELD__bezt
Field descriptor (offset) for struct member 'bezt'.Field Documentation
Blender Source Code
Actual point coordinates and it's handles .
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
MaskSplinePoint masksplinepoint = ...; CPointer<Object> p = masksplinepoint.__dna__addressof(MaskSplinePoint.__DNA__FIELD__bezt); CPointer<BezTriple> p_bezt = p.cast(new Class[]{BezTriple.class});
Metadata
- Field: 'bezt'
- Signature: 'BezTriple'
- Actual Size (32bit/64bit): 72/72
-
__DNA__FIELD___pad
public static final long[] __DNA__FIELD___pad
Field descriptor (offset) for struct member '_pad'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
MaskSplinePoint masksplinepoint = ...; CPointer<Object> p = masksplinepoint.__dna__addressof(MaskSplinePoint.__DNA__FIELD___pad); CPointer<CArrayFacade<Byte>> p__pad = p.cast(new Class[]{CArrayFacade.class, Byte.class});
Metadata
- Field: '_pad'
- Signature: 'char[4]'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__tot_uw
public static final long[] __DNA__FIELD__tot_uw
Field descriptor (offset) for struct member 'tot_uw'.Field Documentation
Blender Source Code
Number of uv feather values.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
MaskSplinePoint masksplinepoint = ...; CPointer<Object> p = masksplinepoint.__dna__addressof(MaskSplinePoint.__DNA__FIELD__tot_uw); CPointer<Integer> p_tot_uw = p.cast(new Class[]{Integer.class});
Metadata
- Field: 'tot_uw'
- Signature: 'int'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__uw
public static final long[] __DNA__FIELD__uw
Field descriptor (offset) for struct member 'uw'.Field Documentation
Blender Source Code
Feather UV values.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
MaskSplinePoint masksplinepoint = ...; CPointer<Object> p = masksplinepoint.__dna__addressof(MaskSplinePoint.__DNA__FIELD__uw); CPointer<CPointer<MaskSplinePointUW>> p_uw = p.cast(new Class[]{CPointer.class, MaskSplinePointUW.class});
Metadata
- Field: 'uw'
- Signature: 'MaskSplinePointUW*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__parent
public static final long[] __DNA__FIELD__parent
Field descriptor (offset) for struct member 'parent'.Field Documentation
Blender Python API
(read-only)Blender Source Code
Parenting information of particular spline point.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
MaskSplinePoint masksplinepoint = ...; CPointer<Object> p = masksplinepoint.__dna__addressof(MaskSplinePoint.__DNA__FIELD__parent); CPointer<MaskParent> p_parent = p.cast(new Class[]{MaskParent.class});
Metadata
- Field: 'parent'
- Signature: 'MaskParent'
- Actual Size (32bit/64bit): 180/184
-
-
Constructor Detail
-
MaskSplinePoint
public MaskSplinePoint(long __address, Block __block, BlockTable __blockTable)
-
MaskSplinePoint
protected MaskSplinePoint(MaskSplinePoint that)
-
-
Method Detail
-
getBezt
public BezTriple getBezt() throws java.io.IOException
Get method for struct member 'bezt'.Field Documentation
Blender Source Code
Actual point coordinates and it's handles .
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__bezt
-
setBezt
public void setBezt(BezTriple bezt) throws java.io.IOException
Set method for struct member 'bezt'.Field Documentation
Blender Source Code
Actual point coordinates and it's handles .
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__bezt
-
get_pad
public CArrayFacade<java.lang.Byte> get_pad() throws java.io.IOException
Get method for struct member '_pad'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad
-
set_pad
public void set_pad(CArrayFacade<java.lang.Byte> _pad) throws java.io.IOException
Set method for struct member '_pad'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad
-
getTot_uw
public int getTot_uw() throws java.io.IOException
Get method for struct member 'tot_uw'.Field Documentation
Blender Source Code
Number of uv feather values.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__tot_uw
-
setTot_uw
public void setTot_uw(int tot_uw) throws java.io.IOException
Set method for struct member 'tot_uw'.Field Documentation
Blender Source Code
Number of uv feather values.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__tot_uw
-
getUw
public CPointer<MaskSplinePointUW> getUw() throws java.io.IOException
Get method for struct member 'uw'.Field Documentation
Blender Source Code
Feather UV values.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__uw
-
setUw
public void setUw(CPointer<MaskSplinePointUW> uw) throws java.io.IOException
Set method for struct member 'uw'.Field Documentation
Blender Source Code
Feather UV values.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__uw
-
getParent
public MaskParent getParent() throws java.io.IOException
Get method for struct member 'parent'.Field Documentation
Blender Python API
(read-only)Blender Source Code
Parenting information of particular spline point.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__parent
-
setParent
public void setParent(MaskParent parent) throws java.io.IOException
Set method for struct member 'parent'.Field Documentation
Blender Python API
(read-only)Blender Source Code
Parenting information of particular spline point.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__parent
-
__io__addressof
public CPointer<MaskSplinePoint> __io__addressof()
Instantiates a pointer on this instance.
-
-