Class FreestyleLineSet
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.FreestyleLineSet
-
public class FreestyleLineSet extends CFacade
Generated facet for DNA struct type 'FreestyleLineSet'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD___pad1
Field descriptor (offset) for struct member '_pad1'.static long[]
__DNA__FIELD___pad2
Field descriptor (offset) for struct member '_pad2'.static long[]
__DNA__FIELD__edge_types
Field descriptor (offset) for struct member 'edge_types'.static long[]
__DNA__FIELD__exclude_edge_types
Field descriptor (offset) for struct member 'exclude_edge_types'.static long[]
__DNA__FIELD__flags
Field descriptor (offset) for struct member 'flags'.static long[]
__DNA__FIELD__group
Field descriptor (offset) for struct member 'group'.static long[]
__DNA__FIELD__linestyle
Field descriptor (offset) for struct member 'linestyle'.static long[]
__DNA__FIELD__name
Field descriptor (offset) for struct member 'name'.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__qi
Field descriptor (offset) for struct member 'qi'.static long[]
__DNA__FIELD__qi_end
Field descriptor (offset) for struct member 'qi_end'.static long[]
__DNA__FIELD__qi_start
Field descriptor (offset) for struct member 'qi_start'.static long[]
__DNA__FIELD__selection
Field descriptor (offset) for struct member 'selection'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct FreestyleLineSet.-
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 FreestyleLineSet(long __address, Block __block, BlockTable __blockTable)
protected
FreestyleLineSet(FreestyleLineSet that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<FreestyleLineSet>
__io__addressof()
Instantiates a pointer on this instance.CArrayFacade<java.lang.Byte>
get_pad1()
Get method for struct member '_pad1'.CArrayFacade<java.lang.Byte>
get_pad2()
Get method for struct member '_pad2'.int
getEdge_types()
Get method for struct member 'edge_types'.int
getExclude_edge_types()
Get method for struct member 'exclude_edge_types'.int
getFlags()
Get method for struct member 'flags'.CPointer<Collection>
getGroup()
Get method for struct member 'group'.CPointer<FreestyleLineStyle>
getLinestyle()
Get method for struct member 'linestyle'.CArrayFacade<java.lang.Byte>
getName()
Get method for struct member 'name'.CPointer<FreestyleLineSet>
getNext()
Get method for struct member 'next'.CPointer<FreestyleLineSet>
getPrev()
Get method for struct member 'prev'.short
getQi()
Get method for struct member 'qi'.int
getQi_end()
Get method for struct member 'qi_end'.int
getQi_start()
Get method for struct member 'qi_start'.int
getSelection()
Get method for struct member 'selection'.void
set_pad1(CArrayFacade<java.lang.Byte> _pad1)
Set method for struct member '_pad1'.void
set_pad2(CArrayFacade<java.lang.Byte> _pad2)
Set method for struct member '_pad2'.void
setEdge_types(int edge_types)
Set method for struct member 'edge_types'.void
setExclude_edge_types(int exclude_edge_types)
Set method for struct member 'exclude_edge_types'.void
setFlags(int flags)
Set method for struct member 'flags'.void
setGroup(CPointer<Collection> group)
Set method for struct member 'group'.void
setLinestyle(CPointer<FreestyleLineStyle> linestyle)
Set method for struct member 'linestyle'.void
setName(CArrayFacade<java.lang.Byte> name)
Set method for struct member 'name'.void
setNext(CPointer<FreestyleLineSet> next)
Set method for struct member 'next'.void
setPrev(CPointer<FreestyleLineSet> prev)
Set method for struct member 'prev'.void
setQi(short qi)
Set method for struct member 'qi'.void
setQi_end(int qi_end)
Set method for struct member 'qi_end'.void
setQi_start(int qi_start)
Set method for struct member 'qi_start'.void
setSelection(int selection)
Set method for struct member 'selection'.-
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 FreestyleLineSet.It is required when allocating a new block to store data for FreestyleLineSet.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__next
public static final long[] __DNA__FIELD__next
Field descriptor (offset) for struct member 'next'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FreestyleLineSet freestylelineset = ...; CPointer<Object> p = freestylelineset.__dna__addressof(FreestyleLineSet.__DNA__FIELD__next); CPointer<CPointer<FreestyleLineSet>> p_next = p.cast(new Class[]{CPointer.class, FreestyleLineSet.class});
Metadata
- Field: 'next'
- Signature: 'FreestyleLineSet*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__prev
public static final long[] __DNA__FIELD__prev
Field descriptor (offset) for struct member 'prev'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FreestyleLineSet freestylelineset = ...; CPointer<Object> p = freestylelineset.__dna__addressof(FreestyleLineSet.__DNA__FIELD__prev); CPointer<CPointer<FreestyleLineSet>> p_prev = p.cast(new Class[]{CPointer.class, FreestyleLineSet.class});
Metadata
- Field: 'prev'
- Signature: 'FreestyleLineSet*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__name
public static final long[] __DNA__FIELD__name
Field descriptor (offset) for struct member 'name'.Field Documentation
Blender Python API
Line set nameBlender Source Code
Line set name, MAX_NAME.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FreestyleLineSet freestylelineset = ...; CPointer<Object> p = freestylelineset.__dna__addressof(FreestyleLineSet.__DNA__FIELD__name); CPointer<CArrayFacade<Byte>> p_name = p.cast(new Class[]{CArrayFacade.class, Byte.class});
Metadata
- Field: 'name'
- Signature: 'char[64]'
- Actual Size (32bit/64bit): 64/64
-
__DNA__FIELD__flags
public static final long[] __DNA__FIELD__flags
Field descriptor (offset) for struct member 'flags'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FreestyleLineSet freestylelineset = ...; CPointer<Object> p = freestylelineset.__dna__addressof(FreestyleLineSet.__DNA__FIELD__flags); CPointer<Integer> p_flags = p.cast(new Class[]{Integer.class});
Metadata
- Field: 'flags'
- Signature: 'int'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__selection
public static final long[] __DNA__FIELD__selection
Field descriptor (offset) for struct member 'selection'.Field Documentation
Blender Source Code
Selection criteria.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FreestyleLineSet freestylelineset = ...; CPointer<Object> p = freestylelineset.__dna__addressof(FreestyleLineSet.__DNA__FIELD__selection); CPointer<Integer> p_selection = p.cast(new Class[]{Integer.class});
Metadata
- Field: 'selection'
- Signature: 'int'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__qi
public static final long[] __DNA__FIELD__qi
Field descriptor (offset) for struct member 'qi'.Field Documentation
Blender Source Code
Quantitative invisibility.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FreestyleLineSet freestylelineset = ...; CPointer<Object> p = freestylelineset.__dna__addressof(FreestyleLineSet.__DNA__FIELD__qi); CPointer<Short> p_qi = p.cast(new Class[]{Short.class});
Metadata
- Field: 'qi'
- Signature: 'short'
- Actual Size (32bit/64bit): 2/2
-
__DNA__FIELD___pad1
public static final long[] __DNA__FIELD___pad1
Field descriptor (offset) for struct member '_pad1'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FreestyleLineSet freestylelineset = ...; CPointer<Object> p = freestylelineset.__dna__addressof(FreestyleLineSet.__DNA__FIELD___pad1); CPointer<CArrayFacade<Byte>> p__pad1 = p.cast(new Class[]{CArrayFacade.class, Byte.class});
Metadata
- Field: '_pad1'
- Signature: 'char[2]'
- Actual Size (32bit/64bit): 2/2
-
__DNA__FIELD__qi_start
public static final long[] __DNA__FIELD__qi_start
Field descriptor (offset) for struct member 'qi_start'.Field Documentation
Blender Python API
First QI value of the QI rangePointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FreestyleLineSet freestylelineset = ...; CPointer<Object> p = freestylelineset.__dna__addressof(FreestyleLineSet.__DNA__FIELD__qi_start); CPointer<Integer> p_qi_start = p.cast(new Class[]{Integer.class});
Metadata
- Field: 'qi_start'
- Signature: 'int'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__qi_end
public static final long[] __DNA__FIELD__qi_end
Field descriptor (offset) for struct member 'qi_end'.Field Documentation
Blender Python API
Last QI value of the QI rangePointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FreestyleLineSet freestylelineset = ...; CPointer<Object> p = freestylelineset.__dna__addressof(FreestyleLineSet.__DNA__FIELD__qi_end); CPointer<Integer> p_qi_end = p.cast(new Class[]{Integer.class});
Metadata
- Field: 'qi_end'
- Signature: 'int'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__edge_types
public static final long[] __DNA__FIELD__edge_types
Field descriptor (offset) for struct member 'edge_types'.Field Documentation
Blender Source Code
Feature edge types.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FreestyleLineSet freestylelineset = ...; CPointer<Object> p = freestylelineset.__dna__addressof(FreestyleLineSet.__DNA__FIELD__edge_types); CPointer<Integer> p_edge_types = p.cast(new Class[]{Integer.class});
Metadata
- Field: 'edge_types'
- Signature: 'int'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__exclude_edge_types
public static final long[] __DNA__FIELD__exclude_edge_types
Field descriptor (offset) for struct member 'exclude_edge_types'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FreestyleLineSet freestylelineset = ...; CPointer<Object> p = freestylelineset.__dna__addressof(FreestyleLineSet.__DNA__FIELD__exclude_edge_types); CPointer<Integer> p_exclude_edge_types = p.cast(new Class[]{Integer.class});
Metadata
- Field: 'exclude_edge_types'
- Signature: 'int'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD___pad2
public static final long[] __DNA__FIELD___pad2
Field descriptor (offset) for struct member '_pad2'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FreestyleLineSet freestylelineset = ...; CPointer<Object> p = freestylelineset.__dna__addressof(FreestyleLineSet.__DNA__FIELD___pad2); CPointer<CArrayFacade<Byte>> p__pad2 = p.cast(new Class[]{CArrayFacade.class, Byte.class});
Metadata
- Field: '_pad2'
- Signature: 'char[4]'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__group
public static final long[] __DNA__FIELD__group
Field descriptor (offset) for struct member 'group'.Field Documentation
Blender Source Code
Group of target objects.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FreestyleLineSet freestylelineset = ...; CPointer<Object> p = freestylelineset.__dna__addressof(FreestyleLineSet.__DNA__FIELD__group); CPointer<CPointer<Collection>> p_group = p.cast(new Class[]{CPointer.class, Collection.class});
Metadata
- Field: 'group'
- Signature: 'Collection*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__linestyle
public static final long[] __DNA__FIELD__linestyle
Field descriptor (offset) for struct member 'linestyle'.Field Documentation
Blender Python API
Line style settingsPointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FreestyleLineSet freestylelineset = ...; CPointer<Object> p = freestylelineset.__dna__addressof(FreestyleLineSet.__DNA__FIELD__linestyle); CPointer<CPointer<FreestyleLineStyle>> p_linestyle = p.cast(new Class[]{CPointer.class, FreestyleLineStyle.class});
Metadata
- Field: 'linestyle'
- Signature: 'FreestyleLineStyle*'
- Actual Size (32bit/64bit): 4/8
-
-
Constructor Detail
-
FreestyleLineSet
public FreestyleLineSet(long __address, Block __block, BlockTable __blockTable)
-
FreestyleLineSet
protected FreestyleLineSet(FreestyleLineSet that)
-
-
Method Detail
-
getNext
public CPointer<FreestyleLineSet> getNext() throws java.io.IOException
Get method for struct member 'next'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__next
-
setNext
public void setNext(CPointer<FreestyleLineSet> next) throws java.io.IOException
Set method for struct member 'next'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__next
-
getPrev
public CPointer<FreestyleLineSet> getPrev() throws java.io.IOException
Get method for struct member 'prev'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__prev
-
setPrev
public void setPrev(CPointer<FreestyleLineSet> prev) throws java.io.IOException
Set method for struct member 'prev'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__prev
-
getName
public CArrayFacade<java.lang.Byte> getName() throws java.io.IOException
Get method for struct member 'name'.Field Documentation
Blender Python API
Line set nameBlender Source Code
Line set name, MAX_NAME.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__name
-
setName
public void setName(CArrayFacade<java.lang.Byte> name) throws java.io.IOException
Set method for struct member 'name'.Field Documentation
Blender Python API
Line set nameBlender Source Code
Line set name, MAX_NAME.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__name
-
getFlags
public int getFlags() throws java.io.IOException
Get method for struct member 'flags'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__flags
-
setFlags
public void setFlags(int flags) throws java.io.IOException
Set method for struct member 'flags'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__flags
-
getSelection
public int getSelection() throws java.io.IOException
Get method for struct member 'selection'.Field Documentation
Blender Source Code
Selection criteria.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__selection
-
setSelection
public void setSelection(int selection) throws java.io.IOException
Set method for struct member 'selection'.Field Documentation
Blender Source Code
Selection criteria.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__selection
-
getQi
public short getQi() throws java.io.IOException
Get method for struct member 'qi'.Field Documentation
Blender Source Code
Quantitative invisibility.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__qi
-
setQi
public void setQi(short qi) throws java.io.IOException
Set method for struct member 'qi'.Field Documentation
Blender Source Code
Quantitative invisibility.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__qi
-
get_pad1
public CArrayFacade<java.lang.Byte> get_pad1() throws java.io.IOException
Get method for struct member '_pad1'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad1
-
set_pad1
public void set_pad1(CArrayFacade<java.lang.Byte> _pad1) throws java.io.IOException
Set method for struct member '_pad1'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad1
-
getQi_start
public int getQi_start() throws java.io.IOException
Get method for struct member 'qi_start'.Field Documentation
Blender Python API
First QI value of the QI range- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__qi_start
-
setQi_start
public void setQi_start(int qi_start) throws java.io.IOException
Set method for struct member 'qi_start'.Field Documentation
Blender Python API
First QI value of the QI range- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__qi_start
-
getQi_end
public int getQi_end() throws java.io.IOException
Get method for struct member 'qi_end'.Field Documentation
Blender Python API
Last QI value of the QI range- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__qi_end
-
setQi_end
public void setQi_end(int qi_end) throws java.io.IOException
Set method for struct member 'qi_end'.Field Documentation
Blender Python API
Last QI value of the QI range- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__qi_end
-
getEdge_types
public int getEdge_types() throws java.io.IOException
Get method for struct member 'edge_types'.Field Documentation
Blender Source Code
Feature edge types.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__edge_types
-
setEdge_types
public void setEdge_types(int edge_types) throws java.io.IOException
Set method for struct member 'edge_types'.Field Documentation
Blender Source Code
Feature edge types.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__edge_types
-
getExclude_edge_types
public int getExclude_edge_types() throws java.io.IOException
Get method for struct member 'exclude_edge_types'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__exclude_edge_types
-
setExclude_edge_types
public void setExclude_edge_types(int exclude_edge_types) throws java.io.IOException
Set method for struct member 'exclude_edge_types'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__exclude_edge_types
-
get_pad2
public CArrayFacade<java.lang.Byte> get_pad2() throws java.io.IOException
Get method for struct member '_pad2'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad2
-
set_pad2
public void set_pad2(CArrayFacade<java.lang.Byte> _pad2) throws java.io.IOException
Set method for struct member '_pad2'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad2
-
getGroup
public CPointer<Collection> getGroup() throws java.io.IOException
Get method for struct member 'group'.Field Documentation
Blender Source Code
Group of target objects.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__group
-
setGroup
public void setGroup(CPointer<Collection> group) throws java.io.IOException
Set method for struct member 'group'.Field Documentation
Blender Source Code
Group of target objects.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__group
-
getLinestyle
public CPointer<FreestyleLineStyle> getLinestyle() throws java.io.IOException
Get method for struct member 'linestyle'.Field Documentation
Blender Python API
Line style settings- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__linestyle
-
setLinestyle
public void setLinestyle(CPointer<FreestyleLineStyle> linestyle) throws java.io.IOException
Set method for struct member 'linestyle'.Field Documentation
Blender Python API
Line style settings- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__linestyle
-
__io__addressof
public CPointer<FreestyleLineSet> __io__addressof()
Instantiates a pointer on this instance.
-
-