2002-02-05 13:27:34 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
#ifndef MATH_XYMATRIX_H
|
|
|
|
#define MATH_XYMATRIX_H
|
|
|
|
|
|
|
|
#include "math_gridinset.h"
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
class MathXYMatrixInset : public MathGridInset {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
MathXYMatrixInset();
|
|
|
|
///
|
|
|
|
MathInset * clone() const;
|
|
|
|
///
|
|
|
|
void metrics(MathMetricsInfo const & st) const;
|
|
|
|
///
|
|
|
|
MathXYMatrixInset * asXYMatrixInset() { return this; }
|
2002-02-08 08:03:38 +00:00
|
|
|
///
|
|
|
|
void normalize();
|
2002-02-05 13:27:34 +00:00
|
|
|
|
|
|
|
///
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
///
|
|
|
|
void normalize(NormalStream &) const;
|
|
|
|
///
|
|
|
|
void maplize(MapleStream &) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|