Pathfinder
Line3Unnorm.h
Go to the documentation of this file.
1 
10 #ifndef LINE3UNNORM_H
11 #define LINE3UNNORM_H
12 
13 #include "Line3.h"
14 
15 namespace Pathfinder {
16 
21  struct Line3Unnorm : Line3 {
22 
30  Geometry::Vec3 a,
31  Geometry::Vec3 b
32  );
33 
34  };
35 
36 }
37 
38 #endif
This struct represents a line of the form u = v + rw where ||w|| = 1 does not neccessarily hold...
Definition: Line3Unnorm.h:21
Definition: AABB.cpp:21
Line3Unnorm(Geometry::Vec3 a, Geometry::Vec3 b)
A constructor that creates a line from two vectors.
Definition: Line3Unnorm.cpp:13
This file declares the struct Line3 that represents three-dimensional line.
This struct represents a 3D line of the form u = v + rw.
Definition: Line3.h:20