Skip to main content

var::Matrix

Functions

Matrix()#

inline

var::Matrix< T >::Matrix ()

Matrix(u32 row_count, u32 column_count)#

inline

var::Matrix< T >::Matrix (u32 row_count, u32 column_count)

append(const var::Vector< T > &value)#

inline

Matrix & var::Matrix< T >::append (const var::Vector< T > &value)

Type: Matrix &

Parameters:

at(u32 row_offset, u32 column_offset)#

inline

T & var::Matrix< T >::at (u32 row_offset, u32 column_offset)

Type: T &

Parameters:

  • u32 row_offset
  • u32 column_offset

at(u32 row_offset, u32 column_offset) const#

inline

const T & var::Matrix< T >::at (u32 row_offset, u32 column_offset) const

Type: const T &

Parameters:

  • u32 row_offset
  • u32 column_offset

column_count() const#

inline

u32 var::Matrix< T >::column_count () const

Type: u32

resize(u32 row_count, u32 column_count)#

inline

Matrix & var::Matrix< T >::resize (u32 row_count, u32 column_count)

Type: Matrix &

Parameters:

  • u32 row_count
  • u32 column_count

row(u32 row_offset)#

inline

var::Vector< T > & var::Matrix< T >::row (u32 row_offset)

Type: var::Vector< T > &

Parameters:

  • u32 row_offset

row(u32 row_offset) const#

inline

const var::Vector< T > & var::Matrix< T >::row (u32 row_offset) const

Type: const var::Vector< T > &

Parameters:

  • u32 row_offset

row_count() const#

inline

u32 var::Matrix< T >::row_count () const

Type: u32

transform() const#

inline

Matrix var::Matrix< T >::transform () const

Type: Matrix