]> git.lyx.org Git - lyx.git/blob - src/mathed/matriz.h
first go at mathed file cleanup
[lyx.git] / src / mathed / matriz.h
1 // -*- C++ -*-
2
3 #ifndef MATH_MATRIZ_H
4 #define MATH_MATRIZ_H
5
6 typedef float matriz_data[2][2];
7
8 class Matriz {
9  public: 
10    Matriz();
11    void rota(int);
12    void escala(float, float);
13    void transf(float, float, float &, float &);
14  protected:
15    matriz_data m;
16    void matmat(matriz_data & a);
17 };
18
19 #endif