LVecBase3i

from panda3d.core import LVecBase3i
class LVecBase3i

Bases:

This is the base class for all three-component vectors and points.

Inheritance diagram

Inheritance diagram of LVecBase3i

__add__(other: LVecBase3i) LVecBase3i
__ceil__() object
__div__(scalar: int) LVecBase3i
__eq__(other: LVecBase3i) bool
__floor__() object
__floordiv__(scalar: int) object
__getattr__(attr_name: str) object
__getbuffer__(view: Py_buffer, flags: int) int
__getitem__(i: int)
__getitem__(i: int) int
__iadd__(other: LVecBase3i) LVecBase3i
__idiv__(scalar: int) LVecBase3i
__ifloordiv__(scalar: int) object
__imul__(scalar: int) LVecBase3i
__init__()
__init__(copy: LVecBase2i, z: int)
__init__(param0: LVecBase3i)
__init__(fill_value: int)
__init__(x: int, y: int, z: int)
__ipow__(exponent: int) object
__isub__(other: LVecBase3i) LVecBase3i
__lt__(other: LVecBase3i) bool
__mul__(scalar: int) LVecBase3i
__ne__(other: LVecBase3i) bool
__pow__(exponent: int) object
__reduce__() object
__repr__() str
__rmul__(scalar: int) object
__round__() object
__setattr__(attr_name: str, assign: object) int
__sub__(other: LVecBase3i) LVecBase3i
__sub__(other: LVecBase3i) LVecBase3i
add_hash(hash: int) int

Adds the vector into the running hash.

add_to_cell(i: int, value: int)

These next functions add to an existing value. i.e. foo.set_x(foo.get_x() + value) These are useful to reduce overhead in scripting languages:

add_x(value: int)
add_y(value: int)
add_z(value: int)
almost_equal(other: LVecBase3i) bool

Returns true if two vectors are memberwise equal within a default tolerance based on the numeric type.

almost_equal(other: LVecBase3i, threshold: int) bool

Returns true if two vectors are memberwise equal within a specified tolerance.

assign(copy: LVecBase3i) LVecBase3i
assign(fill_value: int) LVecBase3i
compare_to(other: LVecBase3i) int

This flavor of compare_to uses a default threshold value based on the numeric type.

componentwise_mult(other: LVecBase3i)
cross(other: LVecBase3i) LVecBase3i
cross_into(other: LVecBase3i)
dot(other: LVecBase3i) int
fill(fill_value: int)

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

fmax(other: LVecBase3i) LVecBase3i
fmin(other: LVecBase3i) LVecBase3i
generate_hash(hashgen: ChecksumHashGenerator)

Adds the vector to the indicated hash generator.

get_cell(i: int) int
static get_class_type() TypeHandle
get_data()

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

get_hash() int

Returns a suitable hash for phash_map.

static get_num_components() int
get_x() int
get_xy() LVecBase2i

Returns a 2-component vector that shares just the first two components of this vector.

get_xz() LVecBase2i

Returns a 2-component vector that shares just the first and last components of this vector.

get_y() int
get_yz() LVecBase2i

Returns a 2-component vector that shares just the last two components of this vector.

get_z() int
is_nan() bool

Returns true if any component of the vector is not-a-number, false otherwise.

length_squared() int

Returns the square of the vector’s length, cheap and easy.

output(out: ostream)
read_datagram(source: DatagramIterator)

Reads the vector from the Datagram using get_stdfloat().

read_datagram_fixed(source: DatagramIterator)

Reads the vector from the Datagram using get_float32() or get_float64(). See write_datagram_fixed().

set(x: int, y: int, z: int)
set_cell(i: int, value: int)
set_x(value: int)
set_y(value: int)
set_z(value: int)
static size() int
static unit_x() LVecBase3i

Returns a unit X vector.

static unit_y() LVecBase3i

Returns a unit Y vector.

static unit_z() LVecBase3i

Returns a unit Z vector.

write_datagram(destination: Datagram)

Writes the vector to the Datagram using add_stdfloat(). This is appropriate when you want to write the vector using the standard width setting, especially when you are writing a bam file.

write_datagram_fixed(destination: Datagram)

Writes the vector to the Datagram using add_float32() or add_float64(), depending on the type of floats in the vector, regardless of the setting of Datagram.set_stdfloat_double(). This is appropriate when you want to write a fixed-width value to the datagram, especially when you are not writing a bam file.

property x int
property xy LVecBase2i

Returns a 2-component vector that shares just the first two components of this vector.

property xz LVecBase2i

Returns a 2-component vector that shares just the first and last components of this vector.

property y int
property yz LVecBase2i

Returns a 2-component vector that shares just the last two components of this vector.

property z int
static zero() LVecBase3i

Returns a zero-length vector.