Implement Geometric Types
This commit is contained in:
13
include/J3ML/Geometry/Plane.h
Normal file
13
include/J3ML/Geometry/Plane.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
#include <J3ML/LinearAlgebra/Vector3.h>
|
||||
|
||||
using namespace LinearAlgebra;
|
||||
|
||||
class Plane
|
||||
{
|
||||
public:
|
||||
Vector3 Position;
|
||||
Vector3 Normal;
|
||||
float distance = 0.f;
|
||||
|
||||
};
|
Reference in New Issue
Block a user