SLIP
1.4
|
Provides a class to manipulate 4d 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::Vector4d< T > |
This is a Vector4d struct. It is a specialization of kvector. It implements some specific 4d operations. More... | |
class | slip::Vector4d< T > |
This is a Vector4d struct. It is a specialization of kvector. It implements some specific 4d 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::Vector4d< double > | slip::Vector4d_d |
double alias More... | |
typedef slip::Vector4d< float > | slip::Vector4d_f |
float alias More... | |
typedef slip::Vector4d< long > | slip::Vector4d_l |
long alias More... | |
typedef slip::Vector4d < unsigned long > | slip::Vector4d_ul |
unsigned long alias More... | |
typedef slip::Vector4d< short > | slip::Vector4d_s |
short alias More... | |
typedef slip::Vector4d < unsigned short > | slip::Vector4d_us |
unsigned long alias More... | |
typedef slip::Vector4d< int > | slip::Vector4d_i |
int alias More... | |
typedef slip::Vector4d < unsigned int > | slip::Vector4d_ui |
unsigned int alias More... | |
typedef slip::Vector4d< char > | slip::Vector4d_c |
char alias More... | |
typedef slip::Vector4d < unsigned char > | slip::Vector4d_uc |
unsigned char alias More... | |
Functions | |
template<typename T > | |
Vector4d< T > | slip::operator+ (const Vector4d< T > &V1, const Vector4d< T > &V2) |
template<typename T > | |
Vector4d< T > | slip::operator+ (const Vector4d< T > &V1, const T &val) |
template<typename T > | |
Vector4d< T > | slip::operator+ (const T &val, const Vector4d< T > &V1) |
template<typename T > | |
Vector4d< T > | slip::operator- (const Vector4d< T > &V1, const Vector4d< T > &V2) |
template<typename T > | |
Vector4d< T > | slip::operator- (const Vector4d< T > &V1, const T &val) |
template<typename T > | |
Vector4d< T > | slip::operator- (const T &val, const Vector4d< T > &V1) |
template<typename T > | |
Vector4d< T > | slip::operator* (const Vector4d< T > &V1, const Vector4d< T > &V2) |
template<typename T > | |
Vector4d< T > | slip::operator* (const Vector4d< T > &V1, const T &val) |
template<typename T > | |
Vector4d< T > | slip::operator* (const T &val, const Vector4d< T > &V1) |
template<typename T > | |
Vector4d< T > | slip::operator/ (const Vector4d< T > &V1, const Vector4d< T > &V2) |
template<typename T > | |
Vector4d< T > | slip::operator/ (const Vector4d< T > &V1, const T &val) |
LessThanComparable functions | |
template<typename T > | |
bool | slip::operator< (const Vector4d< T > &x, const Vector4d< T > &y) |
template<typename T > | |
bool | slip::operator> (const Vector4d< T > &x, const Vector4d< T > &y) |
template<typename T > | |
bool | slip::operator<= (const Vector4d< T > &x, const Vector4d< T > &y) |
template<typename T > | |
bool | slip::operator>= (const Vector4d< T > &x, const Vector4d< T > &y) |
Provides a class to manipulate 4d Vector.
Definition in file Vector4d.hpp.