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