LVector4f

from panda3d.core import LVector4f
class LVector4f

Bases:

Bases: LVecBase4f

This is a four-component vector distance.

Inheritance diagram

Inheritance diagram of LVector4f

__add__(other: LVecBase4f) LVecBase4f
__add__(other: LVector4f) LVector4f
__div__(scalar: float) LVector4f
__getattr__(attr_name: str) object
__init__()
__init__(copy: LVecBase3f, w: float)
__init__(copy: LVecBase4f)
__init__(param0: LVector4f)
__init__(fill_value: float)
__init__(x: float, y: float, z: float, w: float)
__mul__(scalar: float) LVector4f
__repr__() str
__setattr__(attr_name: str, assign: object) int
__sub__(other: LVecBase4f) LVecBase4f
__sub__(other: LVector4f) LVector4f
__sub__(other: LVecBase4f) LVecBase4f
__sub__(other: LVector4f) LVector4f
static getClassType() TypeHandle
getXy() LVector2f

Returns the x and y component of this vector

getXyz() LVector3f

Returns the x, y and z component of this vector

normalized() LVector4f

Normalizes the vector and returns the normalized vector as a copy. If the vector was a zero-length vector, a zero length vector will be returned.

project(onto: LVecBase4f) LVector4f

Returns a new vector representing the projection of this vector onto another one. The resulting vector will be a scalar multiple of onto.

static unitW() LVector4f

Returns a unit W vector.

static unitX() LVector4f

Returns a unit X vector.

static unitY() LVector4f

Returns a unit Y vector.

static unitZ() LVector4f

Returns a unit Z vector.

property xy LVector2f

Returns the x and y component of this vector

property xyz LVector3f

Returns the x, y and z component of this vector

static zero() LVector4f

Returns a zero-length vector.