work on raytracing

This commit is contained in:
2017-09-06 08:34:20 +02:00
parent c21925e86f
commit e4cd9c6b8d
32 changed files with 2790 additions and 3 deletions

26
geo/Plane3.h Normal file
View File

@@ -0,0 +1,26 @@
#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