Package org.blender.dna
Class NodeTexBase
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.NodeTexBase
-
public class NodeTexBase extends CFacade
Generated facet for DNA struct type 'NodeTexBase'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD__color_mapping
Field descriptor (offset) for struct member 'color_mapping'.static long[]
__DNA__FIELD__tex_mapping
Field descriptor (offset) for struct member 'tex_mapping'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct NodeTexBase.-
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 NodeTexBase(long __address, Block __block, BlockTable __blockTable)
protected
NodeTexBase(NodeTexBase that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<NodeTexBase>
__io__addressof()
Instantiates a pointer on this instance.ColorMapping
getColor_mapping()
Get method for struct member 'color_mapping'.TexMapping
getTex_mapping()
Get method for struct member 'tex_mapping'.void
setColor_mapping(ColorMapping color_mapping)
Set method for struct member 'color_mapping'.void
setTex_mapping(TexMapping tex_mapping)
Set method for struct member 'tex_mapping'.-
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 NodeTexBase.It is required when allocating a new block to store data for NodeTexBase.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__tex_mapping
public static final long[] __DNA__FIELD__tex_mapping
Field descriptor (offset) for struct member 'tex_mapping'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
NodeTexBase nodetexbase = ...; CPointer<Object> p = nodetexbase.__dna__addressof(NodeTexBase.__DNA__FIELD__tex_mapping); CPointer<TexMapping> p_tex_mapping = p.cast(new Class[]{TexMapping.class});
Metadata
- Field: 'tex_mapping'
- Signature: 'TexMapping'
- Actual Size (32bit/64bit): 140/144
-
__DNA__FIELD__color_mapping
public static final long[] __DNA__FIELD__color_mapping
Field descriptor (offset) for struct member 'color_mapping'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
NodeTexBase nodetexbase = ...; CPointer<Object> p = nodetexbase.__dna__addressof(NodeTexBase.__DNA__FIELD__color_mapping); CPointer<ColorMapping> p_color_mapping = p.cast(new Class[]{ColorMapping.class});
Metadata
- Field: 'color_mapping'
- Signature: 'ColorMapping'
- Actual Size (32bit/64bit): 816/816
-
-
Constructor Detail
-
NodeTexBase
public NodeTexBase(long __address, Block __block, BlockTable __blockTable)
-
NodeTexBase
protected NodeTexBase(NodeTexBase that)
-
-
Method Detail
-
getTex_mapping
public TexMapping getTex_mapping() throws java.io.IOException
Get method for struct member 'tex_mapping'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__tex_mapping
-
setTex_mapping
public void setTex_mapping(TexMapping tex_mapping) throws java.io.IOException
Set method for struct member 'tex_mapping'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__tex_mapping
-
getColor_mapping
public ColorMapping getColor_mapping() throws java.io.IOException
Get method for struct member 'color_mapping'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__color_mapping
-
setColor_mapping
public void setColor_mapping(ColorMapping color_mapping) throws java.io.IOException
Set method for struct member 'color_mapping'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__color_mapping
-
__io__addressof
public CPointer<NodeTexBase> __io__addressof()
Instantiates a pointer on this instance.
-
-