#include <cassert>
#include <cmath>
#include <array>
Go to the source code of this file.
|
| namespace | rt |
| | Namespace RayTracer.
|
| |
|
| template<typename T , std::size_t N> |
| std::ostream & | rt::operator<< (std::ostream &out, const PointVector< T, N > &PV) |
| |
| template<typename T , std::size_t N> |
| PointVector< T, N > | rt::operator* (T val, const PointVector< T, N > &PV) |
| |
| template<typename T , std::size_t N> |
| PointVector< T, N > | rt::operator* (const PointVector< T, N > &PV, T val) |
| |
| template<typename T , std::size_t N> |
| PointVector< T, N > | rt::operator/ (T val, const PointVector< T, N > &PV) |
| |
| template<typename T , std::size_t N> |
| PointVector< T, N > | rt::operator/ (const PointVector< T, N > &PV, T val) |
| |
| template<typename T , std::size_t N> |
| T | rt::distance2 (const PointVector< T, N > &p1, const PointVector< T, N > &p2) |
| |
| template<typename T , std::size_t N> |
| T | rt::distance (const PointVector< T, N > &p1, const PointVector< T, N > &p2) |
| |
- Author
- JOL
Definition in file PointVector.h.
◆ _POINT_VECTOR_H_