Package org.blender.dna
Class NodeGeometrySubdivisionSurface
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.NodeGeometrySubdivisionSurface
-
public class NodeGeometrySubdivisionSurface extends CFacade
Generated facet for DNA struct type 'NodeGeometrySubdivisionSurface'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD__boundary_smooth
Field descriptor (offset) for struct member 'boundary_smooth'.static long[]
__DNA__FIELD__uv_smooth
Field descriptor (offset) for struct member 'uv_smooth'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct NodeGeometrySubdivisionSurface.-
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 NodeGeometrySubdivisionSurface(long __address, Block __block, BlockTable __blockTable)
protected
NodeGeometrySubdivisionSurface(NodeGeometrySubdivisionSurface that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<NodeGeometrySubdivisionSurface>
__io__addressof()
Instantiates a pointer on this instance.byte
getBoundary_smooth()
Get method for struct member 'boundary_smooth'.byte
getUv_smooth()
Get method for struct member 'uv_smooth'.void
setBoundary_smooth(byte boundary_smooth)
Set method for struct member 'boundary_smooth'.void
setUv_smooth(byte uv_smooth)
Set method for struct member 'uv_smooth'.-
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 NodeGeometrySubdivisionSurface.It is required when allocating a new block to store data for NodeGeometrySubdivisionSurface.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__uv_smooth
public static final long[] __DNA__FIELD__uv_smooth
Field descriptor (offset) for struct member 'uv_smooth'.Field Documentation
Blender Source Code
eSubsurfUVSmooth.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
NodeGeometrySubdivisionSurface nodegeometrysubdivisionsurface = ...; CPointer<Object> p = nodegeometrysubdivisionsurface.__dna__addressof(NodeGeometrySubdivisionSurface.__DNA__FIELD__uv_smooth); CPointer<Byte> p_uv_smooth = p.cast(new Class[]{Byte.class});
Metadata
- Field: 'uv_smooth'
- Signature: 'uchar'
- Actual Size (32bit/64bit): 1/1
-
__DNA__FIELD__boundary_smooth
public static final long[] __DNA__FIELD__boundary_smooth
Field descriptor (offset) for struct member 'boundary_smooth'.Field Documentation
Blender Source Code
eSubsurfBoundarySmooth.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
NodeGeometrySubdivisionSurface nodegeometrysubdivisionsurface = ...; CPointer<Object> p = nodegeometrysubdivisionsurface.__dna__addressof(NodeGeometrySubdivisionSurface.__DNA__FIELD__boundary_smooth); CPointer<Byte> p_boundary_smooth = p.cast(new Class[]{Byte.class});
Metadata
- Field: 'boundary_smooth'
- Signature: 'uchar'
- Actual Size (32bit/64bit): 1/1
-
-
Constructor Detail
-
NodeGeometrySubdivisionSurface
public NodeGeometrySubdivisionSurface(long __address, Block __block, BlockTable __blockTable)
-
NodeGeometrySubdivisionSurface
protected NodeGeometrySubdivisionSurface(NodeGeometrySubdivisionSurface that)
-
-
Method Detail
-
getUv_smooth
public byte getUv_smooth() throws java.io.IOException
Get method for struct member 'uv_smooth'.Field Documentation
Blender Source Code
eSubsurfUVSmooth.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__uv_smooth
-
setUv_smooth
public void setUv_smooth(byte uv_smooth) throws java.io.IOException
Set method for struct member 'uv_smooth'.Field Documentation
Blender Source Code
eSubsurfUVSmooth.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__uv_smooth
-
getBoundary_smooth
public byte getBoundary_smooth() throws java.io.IOException
Get method for struct member 'boundary_smooth'.Field Documentation
Blender Source Code
eSubsurfBoundarySmooth.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__boundary_smooth
-
setBoundary_smooth
public void setBoundary_smooth(byte boundary_smooth) throws java.io.IOException
Set method for struct member 'boundary_smooth'.Field Documentation
Blender Source Code
eSubsurfBoundarySmooth.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__boundary_smooth
-
__io__addressof
public CPointer<NodeGeometrySubdivisionSurface> __io__addressof()
Instantiates a pointer on this instance.
-
-