Pathfinder
Line3Norm.h
Go to the documentation of this file.
1 
10 #ifndef LINE3NORM_H
11 #define LINE3NORM_H
12 
13 #include "Line3.h"
14 
15 namespace Pathfinder {
16 
21  struct Line3Norm : Line3 {
22 
30  Line3Norm(
31  Geometry::Vec3 a,
32  Geometry::Vec3 b
33  );
34 
35  };
36 
37 }
38 
39 #endif
Definition: AABB.cpp:21
Line3Norm(Geometry::Vec3 a, Geometry::Vec3 b)
A constructor that creates a line from two vectors.
Definition: Line3Norm.cpp:14
This struct represents a line of the form u = v + rw where w is normalized to length 1...
Definition: Line3Norm.h:21
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