Laid Out Headers
This commit is contained in:
@@ -11,10 +11,19 @@ namespace J3ML::Geometry
|
||||
{
|
||||
public:
|
||||
Plane() : Shape() {}
|
||||
Plane(const Vector3& v1, const Vector3 &v2, const Vector3& v3)
|
||||
{
|
||||
Set(v1, v2, v3);
|
||||
}
|
||||
Plane(const Vector3& pos, const Vector3& norm)
|
||||
: Shape(), Position(pos), Normal(norm) {}
|
||||
Vector3 Position;
|
||||
Vector3 Normal;
|
||||
float distance = 0.f;
|
||||
|
||||
void Set(const Vector3& v1, const Vector3& v2, const Vector3& v3)
|
||||
{
|
||||
|
||||
}
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user