SLIP
1.4
|
Provides a class to manipulate 3d Vector. More...
#include <iostream>
#include <iterator>
#include <cassert>
#include <cstddef>
#include <algorithm>
#include <numeric>
#include <string>
#include "KVector.hpp"
#include "norms.hpp"
#include <boost/serialization/access.hpp>
#include <boost/serialization/split_member.hpp>
#include <boost/serialization/version.hpp>
Go to the source code of this file.
Classes | |
class | slip::Vector3d< T > |
This is a Vector3d struct. It is a specialization of kvector. It implements some specific 3d operations. More... | |
class | slip::Vector3d< T > |
This is a Vector3d struct. It is a specialization of kvector. It implements some specific 3d operations. More... | |
Namespaces | |
slip | |
This namespace corresponds to the kernel of the Simple Library on Image Processing (SLIP). That is to say that it contains the data structures and the algorithms needed by these data strucutres. | |
Typedefs | |
typedef slip::Vector3d< double > | slip::Vector3d_d |
double alias More... | |
typedef slip::Vector3d< float > | slip::Vector3d_f |
float alias More... | |
typedef slip::Vector3d< long > | slip::Vector3d_l |
long alias More... | |
typedef slip::Vector3d < unsigned long > | slip::Vector3d_ul |
unsigned long alias More... | |
typedef slip::Vector3d< short > | slip::Vector3d_s |
short alias More... | |
typedef slip::Vector3d < unsigned short > | slip::Vector3d_us |
unsigned long alias More... | |
typedef slip::Vector3d< int > | slip::Vector3d_i |
int alias More... | |
typedef slip::Vector3d < unsigned int > | slip::Vector3d_ui |
unsigned int alias More... | |
typedef slip::Vector3d< char > | slip::Vector3d_c |
char alias More... | |
typedef slip::Vector3d < unsigned char > | slip::Vector3d_uc |
unsigned char alias More... | |
Functions | |
template<typename T > | |
Vector3d< T > | slip::operator+ (const Vector3d< T > &V1, const Vector3d< T > &V2) |
template<typename T > | |
Vector3d< T > | slip::operator+ (const Vector3d< T > &V1, const T &val) |
template<typename T > | |
Vector3d< T > | slip::operator+ (const T &val, const Vector3d< T > &V1) |
template<typename T > | |
Vector3d< T > | slip::operator- (const Vector3d< T > &V1, const Vector3d< T > &V2) |
template<typename T > | |
Vector3d< T > | slip::operator- (const Vector3d< T > &V1, const T &val) |
template<typename T > | |
Vector3d< T > | slip::operator- (const T &val, const Vector3d< T > &V1) |
template<typename T > | |
Vector3d< T > | slip::operator* (const Vector3d< T > &V1, const Vector3d< T > &V2) |
template<typename T > | |
Vector3d< T > | slip::operator* (const Vector3d< T > &V1, const T &val) |
template<typename T > | |
Vector3d< T > | slip::operator* (const T &val, const Vector3d< T > &V1) |
template<typename T > | |
Vector3d< T > | slip::operator/ (const Vector3d< T > &V1, const Vector3d< T > &V2) |
template<typename T > | |
Vector3d< T > | slip::operator/ (const Vector3d< T > &V1, const T &val) |
LessThanComparable functions | |
template<typename T > | |
bool | slip::operator< (const Vector3d< T > &x, const Vector3d< T > &y) |
template<typename T > | |
bool | slip::operator> (const Vector3d< T > &x, const Vector3d< T > &y) |
template<typename T > | |
bool | slip::operator<= (const Vector3d< T > &x, const Vector3d< T > &y) |
template<typename T > | |
bool | slip::operator>= (const Vector3d< T > &x, const Vector3d< T > &y) |
Provides a class to manipulate 3d Vector.
Definition in file Vector3d.hpp.