GeomVertexColumn

from panda3d.core import GeomVertexColumn
class GeomVertexColumn

Bases:

Bases: GeomEnums

This defines how a single column is interleaved within a vertex array stored within a Geom. The GeomVertexArrayFormat class maintains a list of these to completely define a particular array structure.

Inheritance diagram

Inheritance diagram of GeomVertexColumn

__init__(name: InternalName, num_components: int, numeric_type: NumericType, contents: Contents, start: int, column_alignment: int, num_elements: int, element_stride: int)
__init__(copy: GeomVertexColumn)
assign(copy: GeomVertexColumn) GeomVertexColumn
getColumnAlignment() int

Returns the alignment requirements for this column. If this is greater than 1, it restricts the column to appear only on memory addresses that are integer multiples of this value; this has implications for this column’s start value, as well as the stride of the resulting array.

getComponentBytes() int

Returns the number of bytes used by each component (that is, by one element of the numeric type).

getContents() Contents

Returns the token representing the semantic meaning of the stored value.

getElementStride() int

This value is only relevant for matrix types. Returns the number of bytes to add to access the next row of the matrix.

getName() InternalName

Returns the name of this particular data field, e.g. “vertex” or “normal”. The name may be a user-defined string, or it may be one of the standard system-defined field types. Only the system-defined field types are used for the actual rendering.

getNumComponents() int

Returns the number of components of the column: the number of instances of the NumericType in each element. This is usually, but not always, the same thing as getNumValues().

getNumElements() int

Returns the number of times this column is repeated. This is usually 1, except for matrices.

getNumValues() int

Returns the number of numeric values of the column: the number of distinct numeric values that go into each element. This is usually, but not always, the same thing as getNumComponents(); the difference is in the case of a composite numeric type like NT_packed_dcba, which has four numeric values per component.

getNumericType() NumericType

Returns the token representing the numeric type of the data storage.

getStart() int

Returns the byte within the array record at which this column starts. This can be set to non-zero to implement interleaved arrays.

getTotalBytes() int

Returns the number of bytes used by each element of the column: component_bytes * num_components.

hasHomogeneousCoord() bool

Returns true if this Contents type is one that includes a homogeneous coordinate in the fourth component, or false otherwise. If this is true, correct operation on the vertex data may require scaling by the homogeneous coordinate from time to time (but in general this is handled automatically if you use the 3-component or smaller forms of get_data() and set_data()).

isBytewiseEquivalent(other: GeomVertexColumn) bool

Returns true if the data store of this column is exactly the same as that of the other, irrespective of name or start position within the record.

output(out: ostream)
overlapsWith(start_byte: int, num_bytes: int) bool

Returns true if this column overlaps with any of the bytes in the indicated range, false if it does not.

setColumnAlignment(column_alignment: int)

Changes the column alignment of an existing column. This is only legal on an unregistered format (i.e. when constructing the format initially).

setContents(contents: Contents)

Changes the semantic meaning of an existing column. This is only legal on an unregistered format (i.e. when constructing the format initially).

setName(name: InternalName)

Replaces the name of an existing column. This is only legal on an unregistered format (i.e. when constructing the format initially).

setNumComponents(num_components: int)

Changes the number of components of an existing column. This is only legal on an unregistered format (i.e. when constructing the format initially).

setNumericType(numeric_type: NumericType)

Changes the numeric type an existing column. This is only legal on an unregistered format (i.e. when constructing the format initially).

setStart(start: int)

Changes the start byte of an existing column. This is only legal on an unregistered format (i.e. when constructing the format initially).