mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
d5905fabf6
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1519 a592a061-630c-0410-9148-cb99ea01b6c8
29 lines
367 B
C++
29 lines
367 B
C++
// -*- C++ -*-
|
|
|
|
#ifndef MATH_MATRIZ_H
|
|
#define MATH_MATRIZ_H
|
|
|
|
///
|
|
class Matriz {
|
|
public:
|
|
///
|
|
typedef float matriz_data[2][2];
|
|
///
|
|
Matriz();
|
|
///
|
|
void rota(int);
|
|
///
|
|
void escala(float, float);
|
|
///
|
|
void transf(float, float, float &, float &);
|
|
private:
|
|
///
|
|
matriz_data m_;
|
|
///
|
|
void matmat(matriz_data & a);
|
|
///
|
|
static matriz_data const MATIDEN;
|
|
};
|
|
|
|
#endif
|