DSC
 All Classes Namespaces Files Functions Variables Typedefs Friends Macros
Public Member Functions | List of all members
CGLA::Mat2x3d Class Reference

2x3 double matrix class. More...

#include <Mat2x3d.h>

Inheritance diagram for CGLA::Mat2x3d:
CGLA::ArithMatFloat< Vec2d, Vec3d, Mat2x3d, 2 >

Public Member Functions

 Mat2x3d (const Vec3d &_a, const Vec3d &_b)
 Construct Mat2x3d from two Vec3f vectors (vectors become rows)
 
 Mat2x3d ()
 Construct 0 matrix.
 
- Public Member Functions inherited from CGLA::ArithMatFloat< Vec2d, Vec3d, Mat2x3d, 2 >
const ScalarTypeget () const
 
ScalarTypeget ()
 
const Vec3doperator[] (unsigned int i) const
 Const index operator. Returns i'th row of matrix.
 
Vec3doperator[] (unsigned int i)
 Non-const index operator. Returns i'th row of matrix.
 
bool operator== (const Mat2x3d &v) const
 Equality operator.
 
bool operator!= (const Mat2x3d &v) const
 Inequality operator.
 
const Mat2x3d operator* (ScalarType k) const
 Multiply scalar onto matrix. All entries are multiplied by scalar.
 
const Mat2x3d operator/ (ScalarType k) const
 Divide all entries in matrix by scalar.
 
const Mat2x3doperator*= (ScalarType k)
 Assignment multiplication of matrix by scalar.
 
const Mat2x3doperator/= (ScalarType k)
 Assignment division of matrix by scalar.
 
const Mat2x3d operator+ (const Mat2x3d &m1) const
 Add two matrices.
 
const Mat2x3d operator- (const Mat2x3d &m1) const
 Subtract two matrices.
 
const Mat2x3d operator- () const
 Negate matrix.
 
const Mat2x3doperator+= (const Mat2x3d &v)
 Assigment addition of matrices.
 
const Mat2x3doperator-= (const Mat2x3d &v)
 Assigment subtraction of matrices.
 

Additional Inherited Members

- Public Types inherited from CGLA::ArithMatFloat< Vec2d, Vec3d, Mat2x3d, 2 >
typedef Vec3d HVectorType
 Horizontal vector type.
 
typedef Vec2d VVectorType
 Vertical vector type.
 
typedef Vec3d::ScalarType ScalarType
 The type of a matrix element.
 
- Static Public Member Functions inherited from CGLA::ArithMatFloat< Vec2d, Vec3d, Mat2x3d, 2 >
static unsigned int get_v_dim ()
 Get vertical dimension of matrix.
 
static unsigned int get_h_dim ()
 Get horizontal dimension of matrix.
 
- Protected Member Functions inherited from CGLA::ArithMatFloat< Vec2d, Vec3d, Mat2x3d, 2 >
 ArithMatFloat ()
 Construct 0 matrix.
 
 ArithMatFloat (ScalarType x)
 Construct a matrix where all entries are the same.
 
 ArithMatFloat (Vec3d_a)
 Construct a matrix where all rows are the same.
 
 ArithMatFloat (Vec3d_a, Vec3d_b)
 Construct a matrix with two rows.
 
 ArithMatFloat (Vec3d_a, Vec3d_b, Vec3d_c)
 Construct a matrix with three rows.
 
 ArithMatFloat (Vec3d_a, Vec3d_b, Vec3d_c, Vec3d_d)
 Construct a matrix with four rows.
 
- Protected Attributes inherited from CGLA::ArithMatFloat< Vec2d, Vec3d, Mat2x3d, 2 >
Vec3d data [ROWS]
 The actual contents of the matrix.
 

Detailed Description

2x3 double matrix class.

This class is useful for projecting a vector from 3D space to 2D.


The documentation for this class was generated from the following file: