Package org.blender.dna
Class MovieReconstructedCamera
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.MovieReconstructedCamera
-
public class MovieReconstructedCamera extends CFacade
Generated facet for DNA struct type 'MovieReconstructedCamera'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD__error
Field descriptor (offset) for struct member 'error'.static long[]
__DNA__FIELD__framenr
Field descriptor (offset) for struct member 'framenr'.static long[]
__DNA__FIELD__mat
Field descriptor (offset) for struct member 'mat'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct MovieReconstructedCamera.-
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 MovieReconstructedCamera(long __address, Block __block, BlockTable __blockTable)
protected
MovieReconstructedCamera(MovieReconstructedCamera that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<MovieReconstructedCamera>
__io__addressof()
Instantiates a pointer on this instance.float
getError()
Get method for struct member 'error'.int
getFramenr()
Get method for struct member 'framenr'.CArrayFacade<CArrayFacade<java.lang.Float>>
getMat()
Get method for struct member 'mat'.void
setError(float error)
Set method for struct member 'error'.void
setFramenr(int framenr)
Set method for struct member 'framenr'.void
setMat(CArrayFacade<CArrayFacade<java.lang.Float>> mat)
Set method for struct member 'mat'.-
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 MovieReconstructedCamera.It is required when allocating a new block to store data for MovieReconstructedCamera.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__framenr
public static final long[] __DNA__FIELD__framenr
Field descriptor (offset) for struct member 'framenr'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
MovieReconstructedCamera moviereconstructedcamera = ...; CPointer<Object> p = moviereconstructedcamera.__dna__addressof(MovieReconstructedCamera.__DNA__FIELD__framenr); CPointer<Integer> p_framenr = p.cast(new Class[]{Integer.class});
Metadata
- Field: 'framenr'
- Signature: 'int'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__error
public static final long[] __DNA__FIELD__error
Field descriptor (offset) for struct member 'error'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
MovieReconstructedCamera moviereconstructedcamera = ...; CPointer<Object> p = moviereconstructedcamera.__dna__addressof(MovieReconstructedCamera.__DNA__FIELD__error); CPointer<Float> p_error = p.cast(new Class[]{Float.class});
Metadata
- Field: 'error'
- Signature: 'float'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__mat
public static final long[] __DNA__FIELD__mat
Field descriptor (offset) for struct member 'mat'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
MovieReconstructedCamera moviereconstructedcamera = ...; CPointer<Object> p = moviereconstructedcamera.__dna__addressof(MovieReconstructedCamera.__DNA__FIELD__mat); CPointer<CArrayFacade<CArrayFacade<Float>>> p_mat = p.cast(new Class[]{CArrayFacade.class, CArrayFacade.class, Float.class});
Metadata
- Field: 'mat'
- Signature: 'float[4][4]'
- Actual Size (32bit/64bit): 64/64
-
-
Constructor Detail
-
MovieReconstructedCamera
public MovieReconstructedCamera(long __address, Block __block, BlockTable __blockTable)
-
MovieReconstructedCamera
protected MovieReconstructedCamera(MovieReconstructedCamera that)
-
-
Method Detail
-
getFramenr
public int getFramenr() throws java.io.IOException
Get method for struct member 'framenr'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__framenr
-
setFramenr
public void setFramenr(int framenr) throws java.io.IOException
Set method for struct member 'framenr'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__framenr
-
getError
public float getError() throws java.io.IOException
Get method for struct member 'error'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__error
-
setError
public void setError(float error) throws java.io.IOException
Set method for struct member 'error'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__error
-
getMat
public CArrayFacade<CArrayFacade<java.lang.Float>> getMat() throws java.io.IOException
Get method for struct member 'mat'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__mat
-
setMat
public void setMat(CArrayFacade<CArrayFacade<java.lang.Float>> mat) throws java.io.IOException
Set method for struct member 'mat'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__mat
-
__io__addressof
public CPointer<MovieReconstructedCamera> __io__addressof()
Instantiates a pointer on this instance.
-
-