public class Histogram extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__channels
Field descriptor (offset) for struct member 'channels'.
|
static long[] |
__DNA__FIELD__co
Field descriptor (offset) for struct member 'co'.
|
static long[] |
__DNA__FIELD__data_a
Field descriptor (offset) for struct member 'data_a'.
|
static long[] |
__DNA__FIELD__data_b
Field descriptor (offset) for struct member 'data_b'.
|
static long[] |
__DNA__FIELD__data_g
Field descriptor (offset) for struct member 'data_g'.
|
static long[] |
__DNA__FIELD__data_luma
Field descriptor (offset) for struct member 'data_luma'.
|
static long[] |
__DNA__FIELD__data_r
Field descriptor (offset) for struct member 'data_r'.
|
static long[] |
__DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.
|
static long[] |
__DNA__FIELD__height
Field descriptor (offset) for struct member 'height'.
|
static long[] |
__DNA__FIELD__mode
Field descriptor (offset) for struct member 'mode'.
|
static long[] |
__DNA__FIELD__x_resolution
Field descriptor (offset) for struct member 'x_resolution'.
|
static long[] |
__DNA__FIELD__xmax
Field descriptor (offset) for struct member 'xmax'.
|
static long[] |
__DNA__FIELD__ymax
Field descriptor (offset) for struct member 'ymax'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct Histogram.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
protected |
Histogram(Histogram that) |
|
Histogram(long __address,
Block __block,
BlockTable __blockTable) |
Modifier and Type | Method and Description |
---|---|
CPointer<Histogram> |
__io__addressof()
Instantiates a pointer on this instance.
|
int |
getChannels()
Get method for struct member 'channels'.
|
CArrayFacade<CArrayFacade<java.lang.Float>> |
getCo()
Get method for struct member 'co'.
|
CArrayFacade<java.lang.Float> |
getData_a()
Get method for struct member 'data_a'.
|
CArrayFacade<java.lang.Float> |
getData_b()
Get method for struct member 'data_b'.
|
CArrayFacade<java.lang.Float> |
getData_g()
Get method for struct member 'data_g'.
|
CArrayFacade<java.lang.Float> |
getData_luma()
Get method for struct member 'data_luma'.
|
CArrayFacade<java.lang.Float> |
getData_r()
Get method for struct member 'data_r'.
|
short |
getFlag()
Get method for struct member 'flag'.
|
int |
getHeight()
Get method for struct member 'height'.
|
short |
getMode()
Get method for struct member 'mode'.
|
int |
getX_resolution()
Get method for struct member 'x_resolution'.
|
float |
getXmax()
Get method for struct member 'xmax'.
|
float |
getYmax()
Get method for struct member 'ymax'.
|
void |
setChannels(int channels)
Set method for struct member 'channels'.
|
void |
setCo(CArrayFacade<CArrayFacade<java.lang.Float>> co)
Set method for struct member 'co'.
|
void |
setData_a(CArrayFacade<java.lang.Float> data_a)
Set method for struct member 'data_a'.
|
void |
setData_b(CArrayFacade<java.lang.Float> data_b)
Set method for struct member 'data_b'.
|
void |
setData_g(CArrayFacade<java.lang.Float> data_g)
Set method for struct member 'data_g'.
|
void |
setData_luma(CArrayFacade<java.lang.Float> data_luma)
Set method for struct member 'data_luma'.
|
void |
setData_r(CArrayFacade<java.lang.Float> data_r)
Set method for struct member 'data_r'.
|
void |
setFlag(short flag)
Set method for struct member 'flag'.
|
void |
setHeight(int height)
Set method for struct member 'height'.
|
void |
setMode(short mode)
Set method for struct member 'mode'.
|
void |
setX_resolution(int x_resolution)
Set method for struct member 'x_resolution'.
|
void |
setXmax(float xmax)
Set method for struct member 'xmax'.
|
void |
setYmax(float ymax)
Set method for struct member 'ymax'.
|
__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 Histogram.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__channels
This is how you get a reference on the corresponding field in the struct:
Histogram histogram = ...; CPointer<Object> p = histogram.__dna__addressof(Histogram.__DNA__FIELD__channels); CPointer<Integer> p_channels = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__x_resolution
This is how you get a reference on the corresponding field in the struct:
Histogram histogram = ...; CPointer<Object> p = histogram.__dna__addressof(Histogram.__DNA__FIELD__x_resolution); CPointer<Integer> p_x_resolution = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__data_luma
This is how you get a reference on the corresponding field in the struct:
Histogram histogram = ...; CPointer<Object> p = histogram.__dna__addressof(Histogram.__DNA__FIELD__data_luma); CPointer<CArrayFacade<Float>> p_data_luma = p.cast(new Class[]{CArrayFacade.class, Float.class});
public static final long[] __DNA__FIELD__data_r
This is how you get a reference on the corresponding field in the struct:
Histogram histogram = ...; CPointer<Object> p = histogram.__dna__addressof(Histogram.__DNA__FIELD__data_r); CPointer<CArrayFacade<Float>> p_data_r = p.cast(new Class[]{CArrayFacade.class, Float.class});
public static final long[] __DNA__FIELD__data_g
This is how you get a reference on the corresponding field in the struct:
Histogram histogram = ...; CPointer<Object> p = histogram.__dna__addressof(Histogram.__DNA__FIELD__data_g); CPointer<CArrayFacade<Float>> p_data_g = p.cast(new Class[]{CArrayFacade.class, Float.class});
public static final long[] __DNA__FIELD__data_b
This is how you get a reference on the corresponding field in the struct:
Histogram histogram = ...; CPointer<Object> p = histogram.__dna__addressof(Histogram.__DNA__FIELD__data_b); CPointer<CArrayFacade<Float>> p_data_b = p.cast(new Class[]{CArrayFacade.class, Float.class});
public static final long[] __DNA__FIELD__data_a
This is how you get a reference on the corresponding field in the struct:
Histogram histogram = ...; CPointer<Object> p = histogram.__dna__addressof(Histogram.__DNA__FIELD__data_a); CPointer<CArrayFacade<Float>> p_data_a = p.cast(new Class[]{CArrayFacade.class, Float.class});
public static final long[] __DNA__FIELD__xmax
This is how you get a reference on the corresponding field in the struct:
Histogram histogram = ...; CPointer<Object> p = histogram.__dna__addressof(Histogram.__DNA__FIELD__xmax); CPointer<Float> p_xmax = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__ymax
This is how you get a reference on the corresponding field in the struct:
Histogram histogram = ...; CPointer<Object> p = histogram.__dna__addressof(Histogram.__DNA__FIELD__ymax); CPointer<Float> p_ymax = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__mode
This is how you get a reference on the corresponding field in the struct:
Histogram histogram = ...; CPointer<Object> p = histogram.__dna__addressof(Histogram.__DNA__FIELD__mode); CPointer<Short> p_mode = p.cast(new Class[]{Short.class});
public static final long[] __DNA__FIELD__flag
This is how you get a reference on the corresponding field in the struct:
Histogram histogram = ...; CPointer<Object> p = histogram.__dna__addressof(Histogram.__DNA__FIELD__flag); CPointer<Short> p_flag = p.cast(new Class[]{Short.class});
public static final long[] __DNA__FIELD__height
This is how you get a reference on the corresponding field in the struct:
Histogram histogram = ...; CPointer<Object> p = histogram.__dna__addressof(Histogram.__DNA__FIELD__height); CPointer<Integer> p_height = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__co
This is how you get a reference on the corresponding field in the struct:
Histogram histogram = ...; CPointer<Object> p = histogram.__dna__addressof(Histogram.__DNA__FIELD__co); CPointer<CArrayFacade<CArrayFacade<Float>>> p_co = p.cast(new Class[]{CArrayFacade.class, CArrayFacade.class, Float.class});
public Histogram(long __address, Block __block, BlockTable __blockTable)
protected Histogram(Histogram that)
public int getChannels() throws java.io.IOException
java.io.IOException
__DNA__FIELD__channels
public void setChannels(int channels) throws java.io.IOException
java.io.IOException
__DNA__FIELD__channels
public int getX_resolution() throws java.io.IOException
java.io.IOException
__DNA__FIELD__x_resolution
public void setX_resolution(int x_resolution) throws java.io.IOException
java.io.IOException
__DNA__FIELD__x_resolution
public CArrayFacade<java.lang.Float> getData_luma() throws java.io.IOException
java.io.IOException
__DNA__FIELD__data_luma
public void setData_luma(CArrayFacade<java.lang.Float> data_luma) throws java.io.IOException
java.io.IOException
__DNA__FIELD__data_luma
public CArrayFacade<java.lang.Float> getData_r() throws java.io.IOException
java.io.IOException
__DNA__FIELD__data_r
public void setData_r(CArrayFacade<java.lang.Float> data_r) throws java.io.IOException
java.io.IOException
__DNA__FIELD__data_r
public CArrayFacade<java.lang.Float> getData_g() throws java.io.IOException
java.io.IOException
__DNA__FIELD__data_g
public void setData_g(CArrayFacade<java.lang.Float> data_g) throws java.io.IOException
java.io.IOException
__DNA__FIELD__data_g
public CArrayFacade<java.lang.Float> getData_b() throws java.io.IOException
java.io.IOException
__DNA__FIELD__data_b
public void setData_b(CArrayFacade<java.lang.Float> data_b) throws java.io.IOException
java.io.IOException
__DNA__FIELD__data_b
public CArrayFacade<java.lang.Float> getData_a() throws java.io.IOException
java.io.IOException
__DNA__FIELD__data_a
public void setData_a(CArrayFacade<java.lang.Float> data_a) throws java.io.IOException
java.io.IOException
__DNA__FIELD__data_a
public float getXmax() throws java.io.IOException
java.io.IOException
__DNA__FIELD__xmax
public void setXmax(float xmax) throws java.io.IOException
java.io.IOException
__DNA__FIELD__xmax
public float getYmax() throws java.io.IOException
java.io.IOException
__DNA__FIELD__ymax
public void setYmax(float ymax) throws java.io.IOException
java.io.IOException
__DNA__FIELD__ymax
public short getMode() throws java.io.IOException
java.io.IOException
__DNA__FIELD__mode
public void setMode(short mode) throws java.io.IOException
java.io.IOException
__DNA__FIELD__mode
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 int getHeight() throws java.io.IOException
java.io.IOException
__DNA__FIELD__height
public void setHeight(int height) throws java.io.IOException
java.io.IOException
__DNA__FIELD__height
public CArrayFacade<CArrayFacade<java.lang.Float>> getCo() throws java.io.IOException
java.io.IOException
__DNA__FIELD__co
public void setCo(CArrayFacade<CArrayFacade<java.lang.Float>> co) throws java.io.IOException
java.io.IOException
__DNA__FIELD__co