template<typename T>
Vector<T, 4> class
Template parameters | |
---|---|
T | the number type |
Contents
Static 4D vector class
Public static variables
Public static functions
Constructors, destructors, conversion operators
Public functions
- auto Dim() const -> fsize constexpr noexcept
- auto operator()(fsize l) -> T&
- auto operator()(fsize l) const -> const T&
- auto operator*() const -> const T* noexcept
- auto operator*() -> T* noexcept
- auto operator=(const Vector& other) -> Vector&
- auto operator=(Vector&& other) -> Vector& noexcept
- auto operator+(const Vector& other) const -> Vector
- auto operator-(const Vector& other) const -> Vector
- auto operator*(const Vector& other) const -> Vector
- auto operator/(const Vector& other) const -> Vector
- auto operator*(const T other) const -> Vector
- auto operator/(const T other) const -> Vector
- void operator+=(const Vector& other)
- void operator-=(const Vector& other)
- void operator*=(const Vector& other)
- void operator/=(const Vector& other)
- void operator*=(const T other)
- void operator/=(const T other)
- auto operator-() const -> Vector
- auto Dot(const Vector& other) const -> T
- auto Distance(const Vector& other) const -> T
- auto DistanceSquared(const Vector& other) const -> T
- auto Norm() const -> T
- auto NormSquared() const -> T
- auto Normalize() const -> Vector
- auto operator==(const Vector& other) const -> bool
- auto operator!=(const Vector& other) const -> bool
- auto operator<(const Vector& other) const -> bool
- auto operator>(const Vector& other) const -> bool
- auto operator<=(const Vector& other) const -> bool
- auto operator>=(const Vector& other) const -> bool
Public variables
Function documentation
template<typename T>
bpf:: math:: Vector<T, 4><T>:: Vector(T x,
T y,
T z,
T w)
Parameters | |
---|---|
x | coordinate |
y | coordinate |
z | coordinate |
w | coordinate |
Constructs a vector by individual coordinates
template<typename T>
bpf:: math:: Vector<T, 4><T>:: Vector()
Constructs a empty vector
template<typename T>
bpf:: math:: Vector<T, 4><T>:: Vector(const T val) explicit
Parameters | |
---|---|
val | number to copy from |
Constructs a vector from a scalar
template<typename T>
bpf:: math:: Vector<T, 4><T>:: Vector(const std::initializer_list<T>& lst)
Parameters | |
---|---|
lst | the list to copy values from |
Constructs a vector from an initializer list
template<typename T>
T& bpf:: math:: Vector<T, 4><T>:: operator()(fsize l)
Parameters | |
---|---|
l | the row number |
Returns | mutable cell value |
Exceptions | |
IndexException | if out of bounds |
Obtains the value of a cell for modification
template<typename T>
const T& bpf:: math:: Vector<T, 4><T>:: operator()(fsize l) const
Parameters | |
---|---|
l | the row number |
Returns | immutable cell value |
Exceptions | |
IndexException | if out of bounds |
Obtains the value of a cell for reading
template<typename T>
const T* bpf:: math:: Vector<T, 4><T>:: operator*() const noexcept
Returns | immutable low-level C array |
---|
Returns a low-level C array, used to transfer to lower-level APIs
template<typename T>
T* bpf:: math:: Vector<T, 4><T>:: operator*() noexcept
Returns | mutable low-level C array |
---|
Returns a low-level C array, used to transfer to lower-level APIs
template<typename T>
void bpf:: math:: Vector<T, 4><T>:: operator+=(const Vector& other)
Parameters | |
---|---|
other | operand |
Performs element-wise addition
template<typename T>
void bpf:: math:: Vector<T, 4><T>:: operator-=(const Vector& other)
Parameters | |
---|---|
other | operand |
Performs element-wise subtraction
template<typename T>
void bpf:: math:: Vector<T, 4><T>:: operator*=(const Vector& other)
Parameters | |
---|---|
other | operand |
Performs element-wise multiplication
template<typename T>
void bpf:: math:: Vector<T, 4><T>:: operator/=(const Vector& other)
Parameters | |
---|---|
other | operand |
Performs element-wise division
template<typename T>
void bpf:: math:: Vector<T, 4><T>:: operator*=(const T other)
Parameters | |
---|---|
other | operand |
Performs vector-scalar multiplication
template<typename T>
void bpf:: math:: Vector<T, 4><T>:: operator/=(const T other)
Parameters | |
---|---|
other | operand |
Performs vector-scalar division
template<typename T>
T bpf:: math:: Vector<T, 4><T>:: DistanceSquared(const Vector& other) const
Parameters | |
---|---|
other | operand |
Returns | number |
Computes the squared distance between two vectors
template<typename T>
T bpf:: math:: Vector<T, 4><T>:: Norm() const
Returns | number |
---|
Computes the norm of this vector
template<typename T>
T bpf:: math:: Vector<T, 4><T>:: NormSquared() const
Returns | number |
---|
Computes the squared norm of this vector
template<typename T>
bool bpf:: math:: Vector<T, 4><T>:: operator==(const Vector& other) const
Parameters | |
---|---|
other | vector to compare with |
Returns | true if the two vectors are equal, false otherwise |
Compare two vectors
template<typename T>
bool bpf:: math:: Vector<T, 4><T>:: operator!=(const Vector& other) const
Parameters | |
---|---|
other | vector to compare with |
Returns | false if the two vectors are equal, true otherwise |
Compare two vectors
template<typename T>
bool bpf:: math:: Vector<T, 4><T>:: operator<=(const Vector& other) const
Parameters | |
---|---|
other | vector to compare with |
Returns | true if this is less than or equal to, false otherwise |
Compare two vectors
template<typename T>
bool bpf:: math:: Vector<T, 4><T>:: operator>=(const Vector& other) const
Parameters | |
---|---|
other | vector to compare with |
Returns | true if this is greater than or equal to other, false otherwise |
Compare two vectors
Variable documentation
template<typename T>
T bpf:: math:: Vector<T, 4><T>:: X
X coordinate
template<typename T>
T bpf:: math:: Vector<T, 4><T>:: Y
Y coordinate
template<typename T>
T bpf:: math:: Vector<T, 4><T>:: Z
Z coordinate
template<typename T>
T bpf:: math:: Vector<T, 4><T>:: W
W coordinate