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