NcEngine
Geometry.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "Vector.h"
8
9#include <span>
10
11namespace nc
12{
13struct Sphere
14{
15 Vector3 center;
16 float radius;
17};
18
19struct Box
20{
21 Vector3 center;
22 Vector3 extents;
23 float maxExtent;
24};
25
26struct Capsule
27{
28 Vector3 pointA, pointB;
29 float radius;
30 float maxExtent;
31};
32
34{
35 std::span<const Vector3> vertices;
36 Vector3 extents;
37 float maxExtent;
38};
39
41{
42 Vector3 a, b, c;
43};
44
45struct Plane
46{
47 Vector3 normal;
48 float d;
49};
50
51struct Frustum
52{
53 Plane left;
54 Plane right;
55 Plane bottom;
56 Plane top;
57 Plane front;
58 Plane back;
59};
60} // namespace nc
Definition: Geometry.h:20
Definition: Geometry.h:27
Definition: Geometry.h:34
Definition: Geometry.h:52
Definition: Geometry.h:46
Definition: Geometry.h:14
Definition: Geometry.h:41
A three component vector.
Definition: Vector.h:29