SLIP  1.4
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Classes | Namespaces | Typedefs
DenseVector3dField2d.hpp File Reference

Provides a class to manipulate dense 2d fields containing 3d vectors. More...

#include <iostream>
#include <fstream>
#include <iterator>
#include <cassert>
#include <numeric>
#include <cmath>
#include <string>
#include <cstddef>
#include "Matrix.hpp"
#include "stride_iterator.hpp"
#include "kstride_iterator.hpp"
#include "iterator2d_box.hpp"
#include "apply.hpp"
#include "Vector3d.hpp"
#include "GenericMultiComponent2d.hpp"
#include <boost/serialization/access.hpp>
#include <boost/serialization/split_member.hpp>
#include <boost/serialization/version.hpp>
#include <boost/serialization/base_object.hpp>
Include dependency graph for DenseVector3dField2d.hpp:

Go to the source code of this file.

Classes

class  slip::stride_iterator< T >
 
class  slip::iterator2d_box< T >
 This is some iterator to iterate a 2d container into a slip::Box2d area defined by the indices of the 2d container. More...
 
class  slip::DPoint2d< T >
 Difference of Point2D class, specialization of DPoint<CoordType,DIM> with DIM = 2. More...
 
class  slip::Point2d< T >
 This is a point2d class, a specialized version of Point<CoordType,DIM> with DIM = 2. More...
 
class  slip::Box2d< CoordType >
 This is a Box2d class, a specialized version of slip::Box<CoordType,DIM> with DIM = 2. More...
 
class  slip::DenseVector3dField2d< T >
 This is a dense 2d Field containing Vector3d. This container statisfies the BidirectionnalContainer concepts of the STL. It is also an 2d extension of the RandomAccessContainer concept. That is to say the bracket element access is replaced by the double bracket element access. It is a specialization of GenericMultiComponent2d using Vector3d blocks. It implements arithmetic and mathematical operators and read/write methods (tecplot and gnuplot file format...). More...
 
class  slip::DenseVector3dField2d< T >
 This is a dense 2d Field containing Vector3d. This container statisfies the BidirectionnalContainer concepts of the STL. It is also an 2d extension of the RandomAccessContainer concept. That is to say the bracket element access is replaced by the double bracket element access. It is a specialization of GenericMultiComponent2d using Vector3d blocks. It implements arithmetic and mathematical operators and read/write methods (tecplot and gnuplot file format...). 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::DenseVector3dField2d
< double > 
slip::DenseVector3dField2d_d
 double alias More...
 
typedef
slip::DenseVector3dField2d
< float > 
slip::DenseVector3dField2d_f
 float alias More...
 
typedef
slip::DenseVector3dField2d
< long > 
slip::DenseVector3dField2d_l
 long alias More...
 
typedef
slip::DenseVector3dField2d
< unsigned long > 
slip::DenseVector3dField2d_ul
 unsigned long alias More...
 
typedef
slip::DenseVector3dField2d
< short > 
slip::DenseVector3dField2d_s
 short alias More...
 
typedef
slip::DenseVector3dField2d
< unsigned short > 
slip::DenseVector3dField2d_us
 unsigned long alias More...
 
typedef
slip::DenseVector3dField2d
< int > 
slip::DenseVector3dField2d_i
 int alias More...
 
typedef
slip::DenseVector3dField2d
< unsigned int > 
slip::DenseVector3dField2d_ui
 unsigned int alias More...
 
typedef
slip::DenseVector3dField2d
< char > 
slip::DenseVector3dField2d_c
 char alias More...
 
typedef
slip::DenseVector3dField2d
< unsigned char > 
slip::DenseVector3dField2d_uc
 unsigned char alias More...
 

Functions

Arithmetical DenseVector3dField2d operators
template<typename T >
DenseVector3dField2d< T > slip::operator+ (const DenseVector3dField2d< T > &M1, const T &val)
 addition of a scalar to each element of a DenseVector3dField2d More...
 
template<typename T >
DenseVector3dField2d< T > slip::operator+ (const T &val, const DenseVector3dField2d< T > &M1)
 addition of a scalar to each element of a DenseVector3dField2d More...
 
template<typename T >
DenseVector3dField2d< T > slip::operator- (const DenseVector3dField2d< T > &M1, const T &val)
 substraction of a scalar to each element of a DenseVector3dField2d More...
 
template<typename T >
DenseVector3dField2d< T > slip::operator- (const T &val, const DenseVector3dField2d< T > &M1)
 substraction of a scalar to each element of a DenseVector3dField2d More...
 
template<typename T >
DenseVector3dField2d< T > slip::operator* (const DenseVector3dField2d< T > &M1, const T &val)
 multiplication of a scalar to each element of a DenseVector3dField2d More...
 
template<typename T >
DenseVector3dField2d< T > slip::operator* (const T &val, const DenseVector3dField2d< T > &M1)
 multiplication of a scalar to each element of a DenseVector3dField2d More...
 
template<typename T >
DenseVector3dField2d< T > slip::operator/ (const DenseVector3dField2d< T > &M1, const T &val)
 division of a scalar to each element of a DenseVector3dField2d More...
 
template<typename T >
DenseVector3dField2d< T > slip::operator+ (const DenseVector3dField2d< T > &M1, const DenseVector3dField2d< T > &M2)
 pointwise addition of two DenseVector3dField2d More...
 
template<typename T >
DenseVector3dField2d< T > slip::operator+ (const DenseVector3dField2d< T > &M1, const slip::Vector3d< T > &val)
 addition of a Vector3d to each element of a DenseVector3dField2d More...
 
template<typename T >
DenseVector3dField2d< T > slip::operator+ (const slip::Vector3d< T > &val, const DenseVector3dField2d< T > &M1)
 addition of a Vector3d to each element of a DenseVector3dField2d More...
 
template<typename T >
DenseVector3dField2d< T > slip::operator- (const DenseVector3dField2d< T > &M1, const DenseVector3dField2d< T > &M2)
 pointwise substraction of two DenseVector3dField2d More...
 
template<typename T >
DenseVector3dField2d< T > slip::operator- (const DenseVector3dField2d< T > &M1, const slip::Vector3d< T > &val)
 substraction of a Vector3d to each element of a DenseVector3dField2d More...
 
template<typename T >
DenseVector3dField2d< T > slip::operator- (const slip::Vector3d< T > &val, const DenseVector3dField2d< T > &M1)
 substraction of a Vector3d to each element of a DenseVector3dField2d More...
 
template<typename T >
DenseVector3dField2d< T > slip::operator* (const DenseVector3dField2d< T > &M1, const DenseVector3dField2d< T > &M2)
 pointwise multiplication of two DenseVector3dField2d More...
 
template<typename T >
DenseVector3dField2d< T > slip::operator* (const DenseVector3dField2d< T > &M1, const slip::Vector3d< T > &val)
 multiplication of a Vector3d to each element of a DenseVector3dField2d More...
 
template<typename T >
DenseVector3dField2d< T > slip::operator* (const slip::Vector3d< T > &val, const DenseVector3dField2d< T > &M1)
 multiplication of a Vector3d to each element of a DenseVector3dField2d More...
 
template<typename T >
DenseVector3dField2d< T > slip::operator/ (const DenseVector3dField2d< T > &M1, const DenseVector3dField2d< T > &M2)
 pointwise division of two DenseVector3dField2d More...
 
template<typename T >
DenseVector3dField2d< T > slip::operator/ (const DenseVector3dField2d< T > &M1, const slip::Vector3d< T > &val)
 division of a Vector3d to each element of a DenseVector3dField2d More...
 

Detailed Description

Provides a class to manipulate dense 2d fields containing 3d vectors.

Definition in file DenseVector3dField2d.hpp.