Package org.blender.dna
Class NodeCryptomatte_Runtime
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.NodeCryptomatte_Runtime
-
public class NodeCryptomatte_Runtime extends CFacade
Generated facet for DNA struct type 'NodeCryptomatte_Runtime'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD__add
Field descriptor (offset) for struct member 'add'.static long[]
__DNA__FIELD__layers
Field descriptor (offset) for struct member 'layers'.static long[]
__DNA__FIELD__remove
Field descriptor (offset) for struct member 'remove'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct NodeCryptomatte_Runtime.-
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 NodeCryptomatte_Runtime(long __address, Block __block, BlockTable __blockTable)
protected
NodeCryptomatte_Runtime(NodeCryptomatte_Runtime that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<NodeCryptomatte_Runtime>
__io__addressof()
Instantiates a pointer on this instance.CArrayFacade<java.lang.Float>
getAdd()
Get method for struct member 'add'.ListBase
getLayers()
Get method for struct member 'layers'.CArrayFacade<java.lang.Float>
getRemove()
Get method for struct member 'remove'.void
setAdd(CArrayFacade<java.lang.Float> add)
Set method for struct member 'add'.void
setLayers(ListBase layers)
Set method for struct member 'layers'.void
setRemove(CArrayFacade<java.lang.Float> remove)
Set method for struct member 'remove'.-
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 NodeCryptomatte_Runtime.It is required when allocating a new block to store data for NodeCryptomatte_Runtime.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__layers
public static final long[] __DNA__FIELD__layers
Field descriptor (offset) for struct member 'layers'.Field Documentation
Blender Source Code
Contains
.CryptomatteLayer
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
NodeCryptomatte_Runtime nodecryptomatte_runtime = ...; CPointer<Object> p = nodecryptomatte_runtime.__dna__addressof(NodeCryptomatte_Runtime.__DNA__FIELD__layers); CPointer<ListBase> p_layers = p.cast(new Class[]{ListBase.class});
Metadata
- Field: 'layers'
- Signature: 'ListBase'
- Actual Size (32bit/64bit): 8/16
-
__DNA__FIELD__add
public static final long[] __DNA__FIELD__add
Field descriptor (offset) for struct member 'add'.Field Documentation
Blender Source Code
Temp storage for the cryptomatte picker.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
NodeCryptomatte_Runtime nodecryptomatte_runtime = ...; CPointer<Object> p = nodecryptomatte_runtime.__dna__addressof(NodeCryptomatte_Runtime.__DNA__FIELD__add); CPointer<CArrayFacade<Float>> p_add = p.cast(new Class[]{CArrayFacade.class, Float.class});
Metadata
- Field: 'add'
- Signature: 'float[3]'
- Actual Size (32bit/64bit): 12/12
-
__DNA__FIELD__remove
public static final long[] __DNA__FIELD__remove
Field descriptor (offset) for struct member 'remove'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
NodeCryptomatte_Runtime nodecryptomatte_runtime = ...; CPointer<Object> p = nodecryptomatte_runtime.__dna__addressof(NodeCryptomatte_Runtime.__DNA__FIELD__remove); CPointer<CArrayFacade<Float>> p_remove = p.cast(new Class[]{CArrayFacade.class, Float.class});
Metadata
- Field: 'remove'
- Signature: 'float[3]'
- Actual Size (32bit/64bit): 12/12
-
-
Constructor Detail
-
NodeCryptomatte_Runtime
public NodeCryptomatte_Runtime(long __address, Block __block, BlockTable __blockTable)
-
NodeCryptomatte_Runtime
protected NodeCryptomatte_Runtime(NodeCryptomatte_Runtime that)
-
-
Method Detail
-
getLayers
public ListBase getLayers() throws java.io.IOException
Get method for struct member 'layers'.Field Documentation
Blender Source Code
Contains
.CryptomatteLayer
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__layers
-
setLayers
public void setLayers(ListBase layers) throws java.io.IOException
Set method for struct member 'layers'.Field Documentation
Blender Source Code
Contains
.CryptomatteLayer
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__layers
-
getAdd
public CArrayFacade<java.lang.Float> getAdd() throws java.io.IOException
Get method for struct member 'add'.Field Documentation
Blender Source Code
Temp storage for the cryptomatte picker.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__add
-
setAdd
public void setAdd(CArrayFacade<java.lang.Float> add) throws java.io.IOException
Set method for struct member 'add'.Field Documentation
Blender Source Code
Temp storage for the cryptomatte picker.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__add
-
getRemove
public CArrayFacade<java.lang.Float> getRemove() throws java.io.IOException
Get method for struct member 'remove'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__remove
-
setRemove
public void setRemove(CArrayFacade<java.lang.Float> remove) throws java.io.IOException
Set method for struct member 'remove'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__remove
-
__io__addressof
public CPointer<NodeCryptomatte_Runtime> __io__addressof()
Instantiates a pointer on this instance.
-
-