UnalignedLVecBase4d
from panda3d.core import UnalignedLVecBase4d
- class UnalignedLVecBase4d
Bases:
This is an “unaligned”
LVecBase4
. It has no functionality other than to store numbers, and it will pack them in as tightly as possible, avoiding any SSE2 alignment requirements shared by the primaryLVecBase4
class.Use it only when you need to pack numbers tightly without respect to alignment, and then copy it to a proper
LVecBase4
to get actual use from it.Inheritance diagram
- __eq__(other: UnalignedLVecBase4d) bool
- __init__()
- __init__(copy: LVecBase4d)
- __init__(param0: UnalignedLVecBase4d)
- __init__(fill_value: float)
- __ne__(other: UnalignedLVecBase4d) bool
- fill(fill_value: float)
Sets each element of the vector to the indicated fill_value. This is particularly useful for initializing to zero.
- static getClassType() TypeHandle
- getData()
Returns the address of the first of the three data elements in the vector. The remaining elements occupy the next positions consecutively in memory.