Classes | Namespaces | Functions

PolyVoxCore/include/PolyVoxCore/Vector.h File Reference

#include "PolyVoxImpl/TypeDef.h"
#include <cassert>
#include <cmath>
#include <cstring>
#include <iostream>
#include "PolyVoxCore/Vector.inl"
Include dependency graph for Vector.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  PolyVox::Vector< Size, Type >
 Represents a vector in space. More...

Namespaces

namespace  PolyVox
 

Main namespace.


Functions

template<uint32_t Size, typename Type >
Vector< Size, Type > PolyVox::operator+ (const Vector< Size, Type > &lhs, const Vector< Size, Type > &rhs) throw ()
 Addition operator.
template<uint32_t Size, typename Type >
Vector< Size, Type > PolyVox::operator- (const Vector< Size, Type > &lhs, const Vector< Size, Type > &rhs) throw ()
 Subtraction operator.
template<uint32_t Size, typename Type >
Vector< Size, Type > PolyVox::operator* (const Vector< Size, Type > &lhs, const Vector< Size, Type > &rhs) throw ()
 Multiplication operator.
template<uint32_t Size, typename Type >
Vector< Size, Type > PolyVox::operator/ (const Vector< Size, Type > &lhs, const Vector< Size, Type > &rhs) throw ()
 Division operator.
template<uint32_t Size, typename Type >
Vector< Size, Type > PolyVox::operator* (const Vector< Size, Type > &lhs, const Type &rhs) throw ()
 Multiplication operator.
template<uint32_t Size, typename Type >
Vector< Size, Type > PolyVox::operator/ (const Vector< Size, Type > &lhs, const Type &rhs) throw ()
 Division operator.
template<uint32_t Size, typename Type >
std::ostream & PolyVox::operator<< (std::ostream &os, const Vector< Size, Type > &vector) throw ()
 Stream insertion operator.