2001-10-05 20:16:16 +00:00
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
Header: FGMatrix33.h
|
|
|
|
Author: Originally by Tony Peden [formatted and adapted here by Jon Berndt]
|
|
|
|
Date started: Unknown
|
|
|
|
|
|
|
|
HISTORY
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
??/??/?? TP Created
|
|
|
|
03/16/2000 JSB Added exception throwing
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
SENTRY
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
#ifndef FGMATRIX33_H
|
|
|
|
#define FGMATRIX33_H
|
|
|
|
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
INCLUDES
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#ifdef FGFS
|
|
|
|
# include <math.h>
|
|
|
|
# include <simgear/compiler.h>
|
|
|
|
# include STL_STRING
|
|
|
|
# include STL_FSTREAM
|
|
|
|
# include STL_IOSTREAM
|
|
|
|
SG_USING_STD(string);
|
|
|
|
# if !defined(SG_HAVE_NATIVE_SGI_COMPILERS)
|
|
|
|
SG_USING_STD(ostream);
|
|
|
|
SG_USING_STD(istream);
|
|
|
|
SG_USING_STD(cerr);
|
|
|
|
SG_USING_STD(cout);
|
|
|
|
SG_USING_STD(endl);
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# include <string>
|
|
|
|
# if defined(sgi) && !defined(__GNUC__)
|
|
|
|
# include <fstream.h>
|
|
|
|
# include <math.h>
|
|
|
|
# include <iostream.h>
|
|
|
|
# else
|
|
|
|
# include <fstream>
|
|
|
|
# include <cmath>
|
|
|
|
# include <iostream>
|
|
|
|
using std::ostream;
|
|
|
|
using std::istream;
|
|
|
|
using std::cerr;
|
|
|
|
using std::cout;
|
|
|
|
using std::endl;
|
|
|
|
# endif
|
|
|
|
using std::string;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "FGColumnVector3.h"
|
|
|
|
#include "FGJSBBase.h"
|
|
|
|
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
DEFINITIONS
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
#define ID_MATRIX33 "$Id$"
|
|
|
|
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
FORWARD DECLARATIONS
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
class FGColumnVector3;
|
|
|
|
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
DECLARATION: MatrixException
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
class MatrixException : public FGJSBBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
string Message;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
DECLARATION: FGMatrix33
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
class FGMatrix33 : public FGJSBBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FGMatrix33(void);
|
|
|
|
FGMatrix33(int r, int c);
|
|
|
|
FGMatrix33(const FGMatrix33& A);
|
|
|
|
~FGMatrix33(void);
|
|
|
|
|
|
|
|
FGMatrix33& operator=(const FGMatrix33& A);
|
2001-10-14 16:13:00 +00:00
|
|
|
inline double operator()(unsigned int row, unsigned int col) const {return data[row][col];}
|
|
|
|
inline double& operator()(unsigned int row, unsigned int col) {return data[row][col];}
|
2001-10-05 20:16:16 +00:00
|
|
|
|
|
|
|
FGColumnVector3 operator*(const FGColumnVector3& Col);
|
|
|
|
|
|
|
|
inline unsigned int Rows(void) const { return 3; }
|
|
|
|
inline unsigned int Cols(void) const { return 3; }
|
|
|
|
|
|
|
|
void T(void);
|
|
|
|
void InitMatrix(void);
|
|
|
|
void InitMatrix(double value);
|
|
|
|
|
|
|
|
//friend FGMatrix33 operator*(double scalar,FGMatrix33& A);
|
|
|
|
|
|
|
|
FGMatrix33 operator-(const FGMatrix33& B);
|
|
|
|
FGMatrix33 operator+(const FGMatrix33& B);
|
|
|
|
FGMatrix33 operator*(const FGMatrix33& B);
|
|
|
|
FGMatrix33 operator*(const double scalar);
|
|
|
|
FGMatrix33 operator/(const double scalar);
|
2001-11-20 22:34:24 +00:00
|
|
|
FGMatrix33& operator<<(const double ff);
|
2001-10-05 20:16:16 +00:00
|
|
|
|
|
|
|
friend ostream& operator<<(ostream& os, const FGMatrix33& M);
|
|
|
|
friend istream& operator>>(istream& is, FGMatrix33& M);
|
|
|
|
|
|
|
|
void operator-=(const FGMatrix33 &B);
|
|
|
|
void operator+=(const FGMatrix33 &B);
|
|
|
|
void operator*=(const FGMatrix33 &B);
|
|
|
|
void operator*=(const double scalar);
|
|
|
|
void operator/=(const double scalar);
|
|
|
|
|
|
|
|
protected:
|
2001-10-14 16:13:00 +00:00
|
|
|
double data[4][4];
|
2001-10-05 20:16:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void TransposeSquare(void);
|
|
|
|
unsigned int rowCtr, colCtr;
|
2001-12-13 04:48:34 +00:00
|
|
|
void Debug(int from);
|
2001-10-05 20:16:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|