public class CameraDOFSettings extends CFacade
Properties for dof effect.
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD___pad
Field descriptor (offset) for struct member '_pad'.
|
static long[] |
__DNA__FIELD__aperture_blades
Field descriptor (offset) for struct member 'aperture_blades'.
|
static long[] |
__DNA__FIELD__aperture_fstop
Field descriptor (offset) for struct member 'aperture_fstop'.
|
static long[] |
__DNA__FIELD__aperture_ratio
Field descriptor (offset) for struct member 'aperture_ratio'.
|
static long[] |
__DNA__FIELD__aperture_rotation
Field descriptor (offset) for struct member 'aperture_rotation'.
|
static long[] |
__DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.
|
static long[] |
__DNA__FIELD__focus_distance
Field descriptor (offset) for struct member 'focus_distance'.
|
static long[] |
__DNA__FIELD__focus_object
Field descriptor (offset) for struct member 'focus_object'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct CameraDOFSettings.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
protected |
CameraDOFSettings(CameraDOFSettings that) |
|
CameraDOFSettings(long __address,
Block __block,
BlockTable __blockTable) |
Modifier and Type | Method and Description |
---|---|
CPointer<CameraDOFSettings> |
__io__addressof()
Instantiates a pointer on this instance.
|
CArrayFacade<java.lang.Byte> |
get_pad()
Get method for struct member '_pad'.
|
int |
getAperture_blades()
Get method for struct member 'aperture_blades'.
|
float |
getAperture_fstop()
Get method for struct member 'aperture_fstop'.
|
float |
getAperture_ratio()
Get method for struct member 'aperture_ratio'.
|
float |
getAperture_rotation()
Get method for struct member 'aperture_rotation'.
|
short |
getFlag()
Get method for struct member 'flag'.
|
float |
getFocus_distance()
Get method for struct member 'focus_distance'.
|
CPointer<BlenderObject> |
getFocus_object()
Get method for struct member 'focus_object'.
|
void |
set_pad(CArrayFacade<java.lang.Byte> _pad)
Set method for struct member '_pad'.
|
void |
setAperture_blades(int aperture_blades)
Set method for struct member 'aperture_blades'.
|
void |
setAperture_fstop(float aperture_fstop)
Set method for struct member 'aperture_fstop'.
|
void |
setAperture_ratio(float aperture_ratio)
Set method for struct member 'aperture_ratio'.
|
void |
setAperture_rotation(float aperture_rotation)
Set method for struct member 'aperture_rotation'.
|
void |
setFlag(short flag)
Set method for struct member 'flag'.
|
void |
setFocus_distance(float focus_distance)
Set method for struct member 'focus_distance'.
|
void |
setFocus_object(CPointer<BlenderObject> focus_object)
Set method for struct member 'focus_object'.
|
__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
public static final int __DNA__SDNA_INDEX
It is required when allocating a new block to store data for CameraDOFSettings.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__focus_object
Focal distance for depth of field.
This is how you get a reference on the corresponding field in the struct:
CameraDOFSettings cameradofsettings = ...; CPointer<Object> p = cameradofsettings.__dna__addressof(CameraDOFSettings.__DNA__FIELD__focus_object); CPointer<CPointer<BlenderObject>> p_focus_object = p.cast(new Class[]{CPointer.class, BlenderObject.class});
public static final long[] __DNA__FIELD__focus_distance
This is how you get a reference on the corresponding field in the struct:
CameraDOFSettings cameradofsettings = ...; CPointer<Object> p = cameradofsettings.__dna__addressof(CameraDOFSettings.__DNA__FIELD__focus_distance); CPointer<Float> p_focus_distance = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__aperture_fstop
This is how you get a reference on the corresponding field in the struct:
CameraDOFSettings cameradofsettings = ...; CPointer<Object> p = cameradofsettings.__dna__addressof(CameraDOFSettings.__DNA__FIELD__aperture_fstop); CPointer<Float> p_aperture_fstop = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__aperture_rotation
This is how you get a reference on the corresponding field in the struct:
CameraDOFSettings cameradofsettings = ...; CPointer<Object> p = cameradofsettings.__dna__addressof(CameraDOFSettings.__DNA__FIELD__aperture_rotation); CPointer<Float> p_aperture_rotation = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__aperture_ratio
This is how you get a reference on the corresponding field in the struct:
CameraDOFSettings cameradofsettings = ...; CPointer<Object> p = cameradofsettings.__dna__addressof(CameraDOFSettings.__DNA__FIELD__aperture_ratio); CPointer<Float> p_aperture_ratio = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__aperture_blades
This is how you get a reference on the corresponding field in the struct:
CameraDOFSettings cameradofsettings = ...; CPointer<Object> p = cameradofsettings.__dna__addressof(CameraDOFSettings.__DNA__FIELD__aperture_blades); CPointer<Integer> p_aperture_blades = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__flag
This is how you get a reference on the corresponding field in the struct:
CameraDOFSettings cameradofsettings = ...; CPointer<Object> p = cameradofsettings.__dna__addressof(CameraDOFSettings.__DNA__FIELD__flag); CPointer<Short> p_flag = p.cast(new Class[]{Short.class});
public static final long[] __DNA__FIELD___pad
This is how you get a reference on the corresponding field in the struct:
CameraDOFSettings cameradofsettings = ...; CPointer<Object> p = cameradofsettings.__dna__addressof(CameraDOFSettings.__DNA__FIELD___pad); CPointer<CArrayFacade<Byte>> p__pad = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public CameraDOFSettings(long __address, Block __block, BlockTable __blockTable)
protected CameraDOFSettings(CameraDOFSettings that)
public CPointer<BlenderObject> getFocus_object() throws java.io.IOException
Focal distance for depth of field.
java.io.IOException
__DNA__FIELD__focus_object
public void setFocus_object(CPointer<BlenderObject> focus_object) throws java.io.IOException
Focal distance for depth of field.
java.io.IOException
__DNA__FIELD__focus_object
public float getFocus_distance() throws java.io.IOException
java.io.IOException
__DNA__FIELD__focus_distance
public void setFocus_distance(float focus_distance) throws java.io.IOException
java.io.IOException
__DNA__FIELD__focus_distance
public float getAperture_fstop() throws java.io.IOException
java.io.IOException
__DNA__FIELD__aperture_fstop
public void setAperture_fstop(float aperture_fstop) throws java.io.IOException
java.io.IOException
__DNA__FIELD__aperture_fstop
public float getAperture_rotation() throws java.io.IOException
java.io.IOException
__DNA__FIELD__aperture_rotation
public void setAperture_rotation(float aperture_rotation) throws java.io.IOException
java.io.IOException
__DNA__FIELD__aperture_rotation
public float getAperture_ratio() throws java.io.IOException
java.io.IOException
__DNA__FIELD__aperture_ratio
public void setAperture_ratio(float aperture_ratio) throws java.io.IOException
java.io.IOException
__DNA__FIELD__aperture_ratio
public int getAperture_blades() throws java.io.IOException
java.io.IOException
__DNA__FIELD__aperture_blades
public void setAperture_blades(int aperture_blades) throws java.io.IOException
java.io.IOException
__DNA__FIELD__aperture_blades
public short getFlag() throws java.io.IOException
java.io.IOException
__DNA__FIELD__flag
public void setFlag(short flag) throws java.io.IOException
java.io.IOException
__DNA__FIELD__flag
public CArrayFacade<java.lang.Byte> get_pad() throws java.io.IOException
java.io.IOException
__DNA__FIELD___pad
public void set_pad(CArrayFacade<java.lang.Byte> _pad) throws java.io.IOException
java.io.IOException
__DNA__FIELD___pad
public CPointer<CameraDOFSettings> __io__addressof()