Tizen Native API

A 3x3 matrix. More...

Public Member Functions

 Matrix3 ()
 Constructor.
 Matrix3 (const Matrix3 &m)
 Copy Constructor.
 Matrix3 (const Matrix &m)
 Constructor.
 Matrix3 (float s00, float s01, float s02, float s10, float s11, float s12, float s20, float s21, float s22)
 Constructor.
Matrix3operator= (const Matrix3 &matrix)
 Assignment Operator.
Matrix3operator= (const Matrix &matrix)
 Assignment Operator.
bool operator== (const Matrix3 &rhs) const
 The equality operator.
bool operator!= (const Matrix3 &rhs) const
 The inequality operator.
 ~Matrix3 ()
 Destructor.
void SetIdentity ()
 Sets the matrix to the identity matrix.
const float * AsFloat () const
 Returns the contents of the matrix as an array of 9 floats.
float * AsFloat ()
 Returns the contents of the matrix as an array of 9 floats.
bool Invert ()
 Inverts the matrix.
bool Transpose ()
 Swaps the rows to columns.
void Scale (float scale)
 Multiplies all elements of the matrix by the scale value.
float Magnitude () const
 Returns the average of the absolute values of the elements * 3.
bool ScaledInverseTranspose ()
 If the matrix is invertible, then this method inverts, transposes and scales the matrix such that the resultant element values average 1.

Static Public Member Functions

static void Multiply (Matrix3 &result, const Matrix3 &lhs, const Matrix3 &rhs)
 Function to multiply two matrices and store the result onto third.

Static Public Attributes

static const Matrix3 IDENTITY
 The identity matrix.

Friends

std::ostream & operator<< (std::ostream &o, const Matrix3 &matrix)
 Print a 3x3 matrix.

Detailed Description

A 3x3 matrix.

Since :
2.4

Constructor & Destructor Documentation

Constructor.

Since :
2.4

Copy Constructor.

Since :
2.4
Parameters:
[in]mA reference to the copied 3x3 matrix

Constructor.

Since :
2.4
Parameters:
[in]mA 4x4 matrix. The translation and shear components are ignored.
Dali::Matrix3::Matrix3 ( float  s00,
float  s01,
float  s02,
float  s10,
float  s11,
float  s12,
float  s20,
float  s21,
float  s22 
)

Constructor.

Since :
2.4
Parameters:
[in]s00First element
[in]s01Second element
[in]s02Third element
[in]s10Fourth element
[in]s11Fifth element
[in]s12Sixth element
[in]s20Seventh element
[in]s21Eighth element
[in]s22Ninth element

Destructor.

Since :
2.4

Member Function Documentation

const float* Dali::Matrix3::AsFloat ( ) const

Returns the contents of the matrix as an array of 9 floats.

The order of the values for a matrix is:

   xAxis.x yAxis.x zAxis.x
   xAxis.y yAxis.y zAxis.y
   xAxis.z yAxis.z zAxis.z
Since :
2.4
Returns:
The matrix contents as an array of 9 floats.

Returns the contents of the matrix as an array of 9 floats.

 The order of the values for a matrix is:
   xAxis.x yAxis.x zAxis.x
   xAxis.y yAxis.y zAxis.y
   xAxis.z yAxis.z zAxis.z
Since :
2.4
Returns:
The matrix contents as an array of 9 floats.

Inverts the matrix.

Since :
2.4
Returns:
True if successful
float Dali::Matrix3::Magnitude ( ) const

Returns the average of the absolute values of the elements * 3.

(The Magnitude of the unit matrix is therefore 1)

Since :
2.4
Returns:
The magnitude - always positive.
static void Dali::Matrix3::Multiply ( Matrix3 result,
const Matrix3 lhs,
const Matrix3 rhs 
) [static]

Function to multiply two matrices and store the result onto third.

Use this method in time critical path as it does not require temporaries

Since :
2.4
Parameters:
[out]resultResult of the multiplication
[in]lhsMatrix, this can be same matrix as result
[in]rhsMatrix, this cannot be same matrix as result
bool Dali::Matrix3::operator!= ( const Matrix3 rhs) const

The inequality operator.

Utilises appropriate machine epsilon values.

Since :
2.4
Parameters:
[in]rhsThe Matrix to compare this to
Returns:
True if the matrices are equal
Matrix3& Dali::Matrix3::operator= ( const Matrix3 matrix)

Assignment Operator.

Since :
2.4
Parameters:
i]matrix from which to copy values
Returns:
reference to this object
Matrix3& Dali::Matrix3::operator= ( const Matrix matrix)

Assignment Operator.

Since :
2.4
Parameters:
[in]matrixA reference to the copied matrix
Returns:
A reference to this
bool Dali::Matrix3::operator== ( const Matrix3 rhs) const

The equality operator.

Utilises appropriate machine epsilon values.

Since :
2.4
Parameters:
[in]rhsThe Matrix to compare this to
Returns:
True if the matrices are equal
void Dali::Matrix3::Scale ( float  scale)

Multiplies all elements of the matrix by the scale value.

Since :
2.4
Parameters:
i]scale The value by which to scale the whole matrix.

If the matrix is invertible, then this method inverts, transposes and scales the matrix such that the resultant element values average 1.

If the matrix is not invertible, then the matrix is left unchanged.

Since :
2.4
Returns:
True if the matrix is invertible, otherwise false

Sets the matrix to the identity matrix.

Since :
2.4

Swaps the rows to columns.

Since :
2.4
Returns:
True if successful

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  o,
const Matrix3 matrix 
) [friend]

Print a 3x3 matrix.

Since :
2.4
Parameters:
[in]oThe output stream operator.
[in]matrixThe matrix to print.
Returns:
The output stream operator.