This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Indoor/geo/Plane3.h
2017-09-06 08:34:20 +02:00

27 lines
270 B
C++

#ifndef PLANE3_H
#define PLANE3_H
#include "Point3.h"
class Plane3 {
private:
Point3 p1;
Point3 p2;
Point3 p3;
Point3 p4;
public:
/** ctor */
Plane3(Point3 p1, Point3 p2, Point3 p3, Point3 p4) : p1(p1), p2(p2), p3(p3), p4(p4) {
}
};
#endif // PLANE3_H