Package org.blender.dna
Class NodeAntiAliasingData
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.NodeAntiAliasingData
-
public class NodeAntiAliasingData extends CFacade
Generated facet for DNA struct type 'NodeAntiAliasingData'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD__contrast_limit
Field descriptor (offset) for struct member 'contrast_limit'.static long[]
__DNA__FIELD__corner_rounding
Field descriptor (offset) for struct member 'corner_rounding'.static long[]
__DNA__FIELD__threshold
Field descriptor (offset) for struct member 'threshold'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct NodeAntiAliasingData.-
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 NodeAntiAliasingData(long __address, Block __block, BlockTable __blockTable)
protected
NodeAntiAliasingData(NodeAntiAliasingData that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<NodeAntiAliasingData>
__io__addressof()
Instantiates a pointer on this instance.float
getContrast_limit()
Get method for struct member 'contrast_limit'.float
getCorner_rounding()
Get method for struct member 'corner_rounding'.float
getThreshold()
Get method for struct member 'threshold'.void
setContrast_limit(float contrast_limit)
Set method for struct member 'contrast_limit'.void
setCorner_rounding(float corner_rounding)
Set method for struct member 'corner_rounding'.void
setThreshold(float threshold)
Set method for struct member 'threshold'.-
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 NodeAntiAliasingData.It is required when allocating a new block to store data for NodeAntiAliasingData.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__threshold
public static final long[] __DNA__FIELD__threshold
Field descriptor (offset) for struct member 'threshold'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
NodeAntiAliasingData nodeantialiasingdata = ...; CPointer<Object> p = nodeantialiasingdata.__dna__addressof(NodeAntiAliasingData.__DNA__FIELD__threshold); CPointer<Float> p_threshold = p.cast(new Class[]{Float.class});
Metadata
- Field: 'threshold'
- Signature: 'float'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__contrast_limit
public static final long[] __DNA__FIELD__contrast_limit
Field descriptor (offset) for struct member 'contrast_limit'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
NodeAntiAliasingData nodeantialiasingdata = ...; CPointer<Object> p = nodeantialiasingdata.__dna__addressof(NodeAntiAliasingData.__DNA__FIELD__contrast_limit); CPointer<Float> p_contrast_limit = p.cast(new Class[]{Float.class});
Metadata
- Field: 'contrast_limit'
- Signature: 'float'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__corner_rounding
public static final long[] __DNA__FIELD__corner_rounding
Field descriptor (offset) for struct member 'corner_rounding'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
NodeAntiAliasingData nodeantialiasingdata = ...; CPointer<Object> p = nodeantialiasingdata.__dna__addressof(NodeAntiAliasingData.__DNA__FIELD__corner_rounding); CPointer<Float> p_corner_rounding = p.cast(new Class[]{Float.class});
Metadata
- Field: 'corner_rounding'
- Signature: 'float'
- Actual Size (32bit/64bit): 4/4
-
-
Constructor Detail
-
NodeAntiAliasingData
public NodeAntiAliasingData(long __address, Block __block, BlockTable __blockTable)
-
NodeAntiAliasingData
protected NodeAntiAliasingData(NodeAntiAliasingData that)
-
-
Method Detail
-
getThreshold
public float getThreshold() throws java.io.IOException
Get method for struct member 'threshold'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__threshold
-
setThreshold
public void setThreshold(float threshold) throws java.io.IOException
Set method for struct member 'threshold'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__threshold
-
getContrast_limit
public float getContrast_limit() throws java.io.IOException
Get method for struct member 'contrast_limit'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__contrast_limit
-
setContrast_limit
public void setContrast_limit(float contrast_limit) throws java.io.IOException
Set method for struct member 'contrast_limit'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__contrast_limit
-
getCorner_rounding
public float getCorner_rounding() throws java.io.IOException
Get method for struct member 'corner_rounding'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__corner_rounding
-
setCorner_rounding
public void setCorner_rounding(float corner_rounding) throws java.io.IOException
Set method for struct member 'corner_rounding'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__corner_rounding
-
__io__addressof
public CPointer<NodeAntiAliasingData> __io__addressof()
Instantiates a pointer on this instance.
-
-