TrueSync
TSRay.cs
1 namespace TrueSync
2 {
3 
7  public class TSRay
8  {
9  public TSVector direction;
10  public TSVector origin;
11 
12  public TSRay (TSVector origin, TSVector direction)
13  {
14  this.origin = origin;
15  this.direction = direction;
16  }
17 
18  }
19 }
20 
A vector structure.
Definition: TSVector.cs:29
Represents a ray with origin and direction.
Definition: TSRay.cs:7