UnalignedLVecBase4f

class UnalignedLVecBase4f

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 primary LVecBase4 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

Inheritance diagram of UnalignedLVecBase4f

UnalignedLVecBase4f(void) = default
UnalignedLVecBase4f(LVecBase4f const &copy)
UnalignedLVecBase4f(float fill_value)
UnalignedLVecBase4f(float x, float y, float z, float w)
UnalignedLVecBase4f(UnalignedLVecBase4f const&) = default
void fill(float fill_value)

Sets each element of the vector to the indicated fill_value. This is particularly useful for initializing to zero.

static TypeHandle get_class_type(void)
float const *get_data(void) const

Returns the address of the first of the three data elements in the vector. The remaining elements occupy the next positions consecutively in memory.

static constexpr int get_num_components(void)
void set(float x, float y, float z, float w)
static constexpr int size(void)