mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
cfiController
This commit is contained in:
42
LibServer/cficontroller/vectordouble.h
Normal file
42
LibServer/cficontroller/vectordouble.h
Normal file
@@ -0,0 +1,42 @@
|
||||
#ifndef VECTORDOUBLE_H
|
||||
#define VECTORDOUBLE_H
|
||||
|
||||
|
||||
class Vector2dDouble
|
||||
{
|
||||
public:
|
||||
Vector2dDouble();
|
||||
|
||||
double getX() const;
|
||||
void setX(double value);
|
||||
|
||||
double getY() const;
|
||||
void setY(double value);
|
||||
|
||||
private:
|
||||
double x;
|
||||
double y;
|
||||
};
|
||||
|
||||
|
||||
class Vector3dDouble
|
||||
{
|
||||
public:
|
||||
Vector3dDouble();
|
||||
|
||||
double getX() const;
|
||||
void setX(double value);
|
||||
|
||||
double getY() const;
|
||||
void setY(double value);
|
||||
|
||||
double getZ() const;
|
||||
void setZ(double value);
|
||||
|
||||
private:
|
||||
double x;
|
||||
double y;
|
||||
double z;
|
||||
};
|
||||
|
||||
#endif // VECTORDOUBLE_H
|
||||
Reference in New Issue
Block a user