27 lines
270 B
C++
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
|