Package org.blender.dna
Class BrightContrastModifierData
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.BrightContrastModifierData
-
public class BrightContrastModifierData extends CFacade
Generated facet for DNA struct type 'BrightContrastModifierData'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD__bright
Field descriptor (offset) for struct member 'bright'.static long[]
__DNA__FIELD__contrast
Field descriptor (offset) for struct member 'contrast'.static long[]
__DNA__FIELD__modifier
Field descriptor (offset) for struct member 'modifier'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct BrightContrastModifierData.-
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 BrightContrastModifierData(long __address, Block __block, BlockTable __blockTable)
protected
BrightContrastModifierData(BrightContrastModifierData that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<BrightContrastModifierData>
__io__addressof()
Instantiates a pointer on this instance.float
getBright()
Get method for struct member 'bright'.float
getContrast()
Get method for struct member 'contrast'.SequenceModifierData
getModifier()
Get method for struct member 'modifier'.void
setBright(float bright)
Set method for struct member 'bright'.void
setContrast(float contrast)
Set method for struct member 'contrast'.void
setModifier(SequenceModifierData modifier)
Set method for struct member 'modifier'.-
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 BrightContrastModifierData.It is required when allocating a new block to store data for BrightContrastModifierData.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__modifier
public static final long[] __DNA__FIELD__modifier
Field descriptor (offset) for struct member 'modifier'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
BrightContrastModifierData brightcontrastmodifierdata = ...; CPointer<Object> p = brightcontrastmodifierdata.__dna__addressof(BrightContrastModifierData.__DNA__FIELD__modifier); CPointer<SequenceModifierData> p_modifier = p.cast(new Class[]{SequenceModifierData.class});
Metadata
- Field: 'modifier'
- Signature: 'SequenceModifierData'
- Actual Size (32bit/64bit): 96/112
-
__DNA__FIELD__bright
public static final long[] __DNA__FIELD__bright
Field descriptor (offset) for struct member 'bright'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
BrightContrastModifierData brightcontrastmodifierdata = ...; CPointer<Object> p = brightcontrastmodifierdata.__dna__addressof(BrightContrastModifierData.__DNA__FIELD__bright); CPointer<Float> p_bright = p.cast(new Class[]{Float.class});
Metadata
- Field: 'bright'
- Signature: 'float'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__contrast
public static final long[] __DNA__FIELD__contrast
Field descriptor (offset) for struct member 'contrast'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
BrightContrastModifierData brightcontrastmodifierdata = ...; CPointer<Object> p = brightcontrastmodifierdata.__dna__addressof(BrightContrastModifierData.__DNA__FIELD__contrast); CPointer<Float> p_contrast = p.cast(new Class[]{Float.class});
Metadata
- Field: 'contrast'
- Signature: 'float'
- Actual Size (32bit/64bit): 4/4
-
-
Constructor Detail
-
BrightContrastModifierData
public BrightContrastModifierData(long __address, Block __block, BlockTable __blockTable)
-
BrightContrastModifierData
protected BrightContrastModifierData(BrightContrastModifierData that)
-
-
Method Detail
-
getModifier
public SequenceModifierData getModifier() throws java.io.IOException
Get method for struct member 'modifier'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__modifier
-
setModifier
public void setModifier(SequenceModifierData modifier) throws java.io.IOException
Set method for struct member 'modifier'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__modifier
-
getBright
public float getBright() throws java.io.IOException
Get method for struct member 'bright'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__bright
-
setBright
public void setBright(float bright) throws java.io.IOException
Set method for struct member 'bright'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__bright
-
getContrast
public float getContrast() throws java.io.IOException
Get method for struct member 'contrast'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__contrast
-
setContrast
public void setContrast(float contrast) throws java.io.IOException
Set method for struct member 'contrast'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__contrast
-
__io__addressof
public CPointer<BrightContrastModifierData> __io__addressof()
Instantiates a pointer on this instance.
-
-