LPoint3f
from panda3d.core import LPoint3f
- class LPoint3f
Bases:
Bases:
LVecBase3f
This is a three-component point in space (as opposed to a three-component vector, which represents a direction and a distance). Some of the methods are slightly different between
LPoint3
andLVector3
; in particular, subtraction of two points yields a vector, while addition of a vector and a point yields a point.Inheritance diagram
- __add__(other: LVecBase3f) LVecBase3f
- __init__()
- __init__(param0: LPoint3f)
- __init__(copy: LVecBase2f, z: float)
- __init__(copy: LVecBase3f)
- __init__(fill_value: float)
- __sub__(other: LVecBase3f) LVecBase3f
- __sub__(other: LVecBase3f) LVecBase3f
- cross(other: LVecBase3f) LPoint3f
- static getClassType() TypeHandle
- getXy() LPoint2f
Returns a 2-component vector that shares just the first two components of this vector.
- getXz() LPoint2f
Returns a 2-component vector that shares just the first and last components of this vector.
- getYz() LPoint2f
Returns a 2-component vector that shares just the last two components of this vector.
- normalized() LPoint3f
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.
- static origin(cs: CoordinateSystem) LPoint3f
Returns the origin of the indicated coordinate system. This is always 0, 0, 0 with all of our existing coordinate systems; it’s hard to imagine it ever being different.
- project(onto: LVecBase3f) LPoint3f
Returns a new vector representing the projection of this vector onto another one. The resulting vector will be a scalar multiple of onto.
- static rfu(right: float, fwd: float, up: float, cs: CoordinateSystem) LPoint3f
Returns a point described by right, forward, up displacements from the origin, wherever that maps to in the given coordinate system.
- property xy LPoint2f
Returns a 2-component vector that shares just the first two components of this vector.
- property xz LPoint2f
Returns a 2-component vector that shares just the first and last components of this vector.