13 lines
179 B
C++
13 lines
179 B
C++
#pragma once
|
|
#include <J3ML/LinearAlgebra/Vector3.h>
|
|
|
|
using namespace LinearAlgebra;
|
|
|
|
class Plane
|
|
{
|
|
public:
|
|
Vector3 Position;
|
|
Vector3 Normal;
|
|
float distance = 0.f;
|
|
|
|
}; |