blob: dee275182da5986f424b31d32a4e00e537198f23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef SEEN_LIBNR_NR_MATRIX_SCALE_OPS_H
#define SEEN_LIBNR_NR_MATRIX_SCALE_OPS_H
/** \file
* Declarations (and definition if inline) of operator blah (NR::Matrix, NR::scale).
*/
#include "libnr/nr-forward.h"
NR::Matrix operator/(NR::Matrix const &m, NR::scale const &s);
NR::Matrix operator*(NR::Matrix const &m, NR::scale const &s);
#endif /* !SEEN_LIBNR_NR_MATRIX_SCALE_OPS_H */
|