work on raytracing
This commit is contained in:
26
geo/Plane3.h
Normal file
26
geo/Plane3.h
Normal 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
|
||||
Reference in New Issue
Block a user