public class Strip extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__color_balance
Deprecated.
Deprecated
Pointer ArithmeticsThis is how you get a reference on the corresponding field in the struct: Strip strip = ...; CPointer<Object> p = strip.__dna__addressof(Strip.__DNA__FIELD__color_balance); CPointer<CPointer<StripColorBalance>> p_color_balance = p.cast(new Class[]{CPointer.class, StripColorBalance.class}); Metadata
|
static long[] |
__DNA__FIELD__colorspace_settings
Field descriptor (offset) for struct member 'colorspace_settings'.
|
static long[] |
__DNA__FIELD__crop
Field descriptor (offset) for struct member 'crop'.
|
static long[] |
__DNA__FIELD__dir
Field descriptor (offset) for struct member 'dir'.
|
static long[] |
__DNA__FIELD__done
Field descriptor (offset) for struct member 'done'.
|
static long[] |
__DNA__FIELD__endstill
Field descriptor (offset) for struct member 'endstill'.
|
static long[] |
__DNA__FIELD__next
Field descriptor (offset) for struct member 'next'.
|
static long[] |
__DNA__FIELD__prev
Field descriptor (offset) for struct member 'prev'.
|
static long[] |
__DNA__FIELD__proxy
Field descriptor (offset) for struct member 'proxy'.
|
static long[] |
__DNA__FIELD__startstill
Field descriptor (offset) for struct member 'startstill'.
|
static long[] |
__DNA__FIELD__stripdata
Field descriptor (offset) for struct member 'stripdata'.
|
static long[] |
__DNA__FIELD__transform
Field descriptor (offset) for struct member 'transform'.
|
static long[] |
__DNA__FIELD__us
Field descriptor (offset) for struct member 'us'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct Strip.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
|
Strip(long __address,
Block __block,
BlockTable __blockTable) |
protected |
Strip(Strip that) |
Modifier and Type | Method and Description |
---|---|
CPointer<Strip> |
__io__addressof()
Instantiates a pointer on this instance.
|
CPointer<StripColorBalance> |
getColor_balance()
Deprecated.
Deprecated
|
ColorManagedColorspaceSettings |
getColorspace_settings()
Get method for struct member 'colorspace_settings'.
|
CPointer<StripCrop> |
getCrop()
Get method for struct member 'crop'.
|
CArrayFacade<java.lang.Byte> |
getDir()
Get method for struct member 'dir'.
|
int |
getDone()
Get method for struct member 'done'.
|
int |
getEndstill()
Get method for struct member 'endstill'.
|
CPointer<Strip> |
getNext()
Get method for struct member 'next'.
|
CPointer<Strip> |
getPrev()
Get method for struct member 'prev'.
|
CPointer<StripProxy> |
getProxy()
Get method for struct member 'proxy'.
|
int |
getStartstill()
Get method for struct member 'startstill'.
|
CPointer<StripElem> |
getStripdata()
Get method for struct member 'stripdata'.
|
CPointer<StripTransform> |
getTransform()
Get method for struct member 'transform'.
|
int |
getUs()
Get method for struct member 'us'.
|
void |
setColor_balance(CPointer<StripColorBalance> color_balance)
Deprecated.
Deprecated
|
void |
setColorspace_settings(ColorManagedColorspaceSettings colorspace_settings)
Set method for struct member 'colorspace_settings'.
|
void |
setCrop(CPointer<StripCrop> crop)
Set method for struct member 'crop'.
|
void |
setDir(CArrayFacade<java.lang.Byte> dir)
Set method for struct member 'dir'.
|
void |
setDone(int done)
Set method for struct member 'done'.
|
void |
setEndstill(int endstill)
Set method for struct member 'endstill'.
|
void |
setNext(CPointer<Strip> next)
Set method for struct member 'next'.
|
void |
setPrev(CPointer<Strip> prev)
Set method for struct member 'prev'.
|
void |
setProxy(CPointer<StripProxy> proxy)
Set method for struct member 'proxy'.
|
void |
setStartstill(int startstill)
Set method for struct member 'startstill'.
|
void |
setStripdata(CPointer<StripElem> stripdata)
Set method for struct member 'stripdata'.
|
void |
setTransform(CPointer<StripTransform> transform)
Set method for struct member 'transform'.
|
void |
setUs(int us)
Set method for struct member 'us'.
|
__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 Strip.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__next
This is how you get a reference on the corresponding field in the struct:
Strip strip = ...; CPointer<Object> p = strip.__dna__addressof(Strip.__DNA__FIELD__next); CPointer<CPointer<Strip>> p_next = p.cast(new Class[]{CPointer.class, Strip.class});
public static final long[] __DNA__FIELD__prev
This is how you get a reference on the corresponding field in the struct:
Strip strip = ...; CPointer<Object> p = strip.__dna__addressof(Strip.__DNA__FIELD__prev); CPointer<CPointer<Strip>> p_prev = p.cast(new Class[]{CPointer.class, Strip.class});
public static final long[] __DNA__FIELD__us
This is how you get a reference on the corresponding field in the struct:
Strip strip = ...; CPointer<Object> p = strip.__dna__addressof(Strip.__DNA__FIELD__us); CPointer<Integer> p_us = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__done
This is how you get a reference on the corresponding field in the struct:
Strip strip = ...; CPointer<Object> p = strip.__dna__addressof(Strip.__DNA__FIELD__done); CPointer<Integer> p_done = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__startstill
This is how you get a reference on the corresponding field in the struct:
Strip strip = ...; CPointer<Object> p = strip.__dna__addressof(Strip.__DNA__FIELD__startstill); CPointer<Integer> p_startstill = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__endstill
This is how you get a reference on the corresponding field in the struct:
Strip strip = ...; CPointer<Object> p = strip.__dna__addressof(Strip.__DNA__FIELD__endstill); CPointer<Integer> p_endstill = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__stripdata
only used as an array in IMAGE sequences(!), and as a 1-element array in MOVIE sequences, NULL for all other strip-types
This is how you get a reference on the corresponding field in the struct:
Strip strip = ...; CPointer<Object> p = strip.__dna__addressof(Strip.__DNA__FIELD__stripdata); CPointer<CPointer<StripElem>> p_stripdata = p.cast(new Class[]{CPointer.class, StripElem.class});
public static final long[] __DNA__FIELD__dir
This is how you get a reference on the corresponding field in the struct:
Strip strip = ...; CPointer<Object> p = strip.__dna__addressof(Strip.__DNA__FIELD__dir); CPointer<CArrayFacade<Byte>> p_dir = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public static final long[] __DNA__FIELD__proxy
This is how you get a reference on the corresponding field in the struct:
Strip strip = ...; CPointer<Object> p = strip.__dna__addressof(Strip.__DNA__FIELD__proxy); CPointer<CPointer<StripProxy>> p_proxy = p.cast(new Class[]{CPointer.class, StripProxy.class});
public static final long[] __DNA__FIELD__crop
This is how you get a reference on the corresponding field in the struct:
Strip strip = ...; CPointer<Object> p = strip.__dna__addressof(Strip.__DNA__FIELD__crop); CPointer<CPointer<StripCrop>> p_crop = p.cast(new Class[]{CPointer.class, StripCrop.class});
public static final long[] __DNA__FIELD__transform
This is how you get a reference on the corresponding field in the struct:
Strip strip = ...; CPointer<Object> p = strip.__dna__addressof(Strip.__DNA__FIELD__transform); CPointer<CPointer<StripTransform>> p_transform = p.cast(new Class[]{CPointer.class, StripTransform.class});
public static final long[] __DNA__FIELD__color_balance
This is how you get a reference on the corresponding field in the struct:
Strip strip = ...; CPointer<Object> p = strip.__dna__addressof(Strip.__DNA__FIELD__color_balance); CPointer<CPointer<StripColorBalance>> p_color_balance = p.cast(new Class[]{CPointer.class, StripColorBalance.class});
public static final long[] __DNA__FIELD__colorspace_settings
color management
This is how you get a reference on the corresponding field in the struct:
Strip strip = ...; CPointer<Object> p = strip.__dna__addressof(Strip.__DNA__FIELD__colorspace_settings); CPointer<ColorManagedColorspaceSettings> p_colorspace_settings = p.cast(new Class[]{ColorManagedColorspaceSettings.class});
public Strip(long __address, Block __block, BlockTable __blockTable)
protected Strip(Strip that)
public CPointer<Strip> getNext() throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public void setNext(CPointer<Strip> next) throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public CPointer<Strip> getPrev() throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public void setPrev(CPointer<Strip> prev) throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public int getUs() throws java.io.IOException
java.io.IOException
__DNA__FIELD__us
public void setUs(int us) throws java.io.IOException
java.io.IOException
__DNA__FIELD__us
public int getDone() throws java.io.IOException
java.io.IOException
__DNA__FIELD__done
public void setDone(int done) throws java.io.IOException
java.io.IOException
__DNA__FIELD__done
public int getStartstill() throws java.io.IOException
java.io.IOException
__DNA__FIELD__startstill
public void setStartstill(int startstill) throws java.io.IOException
java.io.IOException
__DNA__FIELD__startstill
public int getEndstill() throws java.io.IOException
java.io.IOException
__DNA__FIELD__endstill
public void setEndstill(int endstill) throws java.io.IOException
java.io.IOException
__DNA__FIELD__endstill
public CPointer<StripElem> getStripdata() throws java.io.IOException
only used as an array in IMAGE sequences(!), and as a 1-element array in MOVIE sequences, NULL for all other strip-types
java.io.IOException
__DNA__FIELD__stripdata
public void setStripdata(CPointer<StripElem> stripdata) throws java.io.IOException
only used as an array in IMAGE sequences(!), and as a 1-element array in MOVIE sequences, NULL for all other strip-types
java.io.IOException
__DNA__FIELD__stripdata
public CArrayFacade<java.lang.Byte> getDir() throws java.io.IOException
java.io.IOException
__DNA__FIELD__dir
public void setDir(CArrayFacade<java.lang.Byte> dir) throws java.io.IOException
java.io.IOException
__DNA__FIELD__dir
public CPointer<StripProxy> getProxy() throws java.io.IOException
java.io.IOException
__DNA__FIELD__proxy
public void setProxy(CPointer<StripProxy> proxy) throws java.io.IOException
java.io.IOException
__DNA__FIELD__proxy
public CPointer<StripCrop> getCrop() throws java.io.IOException
java.io.IOException
__DNA__FIELD__crop
public void setCrop(CPointer<StripCrop> crop) throws java.io.IOException
java.io.IOException
__DNA__FIELD__crop
public CPointer<StripTransform> getTransform() throws java.io.IOException
java.io.IOException
__DNA__FIELD__transform
public void setTransform(CPointer<StripTransform> transform) throws java.io.IOException
java.io.IOException
__DNA__FIELD__transform
public CPointer<StripColorBalance> getColor_balance() throws java.io.IOException
java.io.IOException
__DNA__FIELD__color_balance
public void setColor_balance(CPointer<StripColorBalance> color_balance) throws java.io.IOException
java.io.IOException
__DNA__FIELD__color_balance
public ColorManagedColorspaceSettings getColorspace_settings() throws java.io.IOException
color management
java.io.IOException
__DNA__FIELD__colorspace_settings
public void setColorspace_settings(ColorManagedColorspaceSettings colorspace_settings) throws java.io.IOException
color management
java.io.IOException
__DNA__FIELD__colorspace_settings