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