Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef FKHORIZONTAL_H
00028 #define FKHORIZONTAL_H
00029
00030 #include <QGpCoreTools.h>
00031 #include "FK.h"
00032
00033 namespace ArrayCore {
00034
00035 class FKHorizontal : public FK
00036 {
00037 protected:
00038 FKHorizontal(QList<FKStationSignals *> array);
00039 public:
00040 FKHorizontal(double angle, QList<FKStationSignals *> array);
00041 ~FKHorizontal();
00042
00043 virtual void initGrid(int n);
00044 virtual void initGrid(double kx, double ky, int index);
00045 virtual double value(double kx, double ky) const;
00046 virtual double value(double kx, double ky, int index) const;
00047 virtual Point2D rotationFactors(double kx, double ky) const {Q_UNUSED(kx); Q_UNUSED(ky); return _fixedRotation;}
00048 protected:
00049 int _northIndex, _eastIndex;
00050 Point2D * _rotation;
00051 private:
00052 void setComponents(int nComponent);
00053 Point2D _fixedRotation;
00054 };
00055
00056 }
00057
00058 #endif // FKHORIZONTAL_H