#include <cmath>
#include <cstring>
#include <iostream>
#include <sstream>
#include <string>
#include <cassert>
Go to the source code of this file.
|
template<typename T > |
VEC2< T > | std::min (const VEC2< T > &a, const VEC2< T > &b) |
| Gets vector containing minimal values of a and b coordinates. More...
|
|
template<typename T > |
VEC3< T > | std::min (const VEC3< T > &a, const VEC3< T > &b) |
| Gets vector containing minimal values of a and b coordinates. More...
|
|
template<typename T > |
VEC4< T > | std::min (const VEC4< T > &a, const VEC4< T > &b) |
| Gets vector containing minimal values of a and b coordinates. More...
|
|
template<typename T > |
VEC2< T > | std::max (const VEC2< T > &a, const VEC2< T > &b) |
| Gets vector containing maximal values of a and b coordinates. More...
|
|
template<typename T > |
VEC3< T > | std::max (const VEC3< T > &a, const VEC3< T > &b) |
| Gets vector containing maximal values of a and b coordinates. More...
|
|
template<typename T > |
VEC4< T > | std::max (const VEC4< T > &a, const VEC4< T > &b) |
| Gets vector containing maximal values of a and b coordinates. More...
|
|
◆ DEG2RAD
#define DEG2RAD |
( |
|
x | ) |
((x * M_PI) / 180.0) |
◆ EPSILON
◆ M_PI
#define M_PI 3.14159265358979323846 /* pi */ |
◆ VEC2
◆ VEC3
◆ VEC4
◆ Aabb3d
◆ Aabb3f
◆ Matrix3d
◆ Matrix3f
◆ Matrix3i
◆ Matrix4d
◆ Matrix4f
◆ Matrix4i
◆ Quatd
◆ Quatf
◆ Vector2d
Two dimensional Vector of doubles.
◆ Vector2f
Two dimensional Vector of floats.
◆ Vector2i
Two dimensional Vector of ints.
◆ Vector3d
Three dimensional Vector of doubles.
◆ Vector3f
Three dimensional Vector of floats.
◆ Vector3i
Three dimensional Vector of ints.
◆ Vector4d
Three dimensional Vector of doubles.
◆ Vector4f
Three dimensional Vector of floats.
◆ Vector4i
Three dimensional Vector of ints.
◆ max() [1/3]
template<typename T >
VEC2<T> std::max |
( |
const VEC2< T > & |
a, |
|
|
const VEC2< T > & |
b |
|
) |
| |
Gets vector containing maximal values of a and b coordinates.
- Returns
- Vector of maximal coordinates.
◆ max() [2/3]
template<typename T >
VEC3<T> std::max |
( |
const VEC3< T > & |
a, |
|
|
const VEC3< T > & |
b |
|
) |
| |
Gets vector containing maximal values of a and b coordinates.
- Returns
- Vector of maximal coordinates.
◆ max() [3/3]
template<typename T >
VEC4<T> std::max |
( |
const VEC4< T > & |
a, |
|
|
const VEC4< T > & |
b |
|
) |
| |
Gets vector containing maximal values of a and b coordinates.
- Returns
- Vector of maximal coordinates.
◆ min() [1/3]
template<typename T >
VEC2<T> std::min |
( |
const VEC2< T > & |
a, |
|
|
const VEC2< T > & |
b |
|
) |
| |
Gets vector containing minimal values of a and b coordinates.
- Returns
- Vector of minimal coordinates.
◆ min() [2/3]
template<typename T >
VEC3<T> std::min |
( |
const VEC3< T > & |
a, |
|
|
const VEC3< T > & |
b |
|
) |
| |
Gets vector containing minimal values of a and b coordinates.
- Returns
- Vector of minimal coordinates.
◆ min() [3/3]
template<typename T >
VEC4<T> std::min |
( |
const VEC4< T > & |
a, |
|
|
const VEC4< T > & |
b |
|
) |
| |
Gets vector containing minimal values of a and b coordinates.
- Returns
- Vector of minimal coordinates.
◆ epsilon
const double epsilon = 4.37114e-05 |