TrueSync
Main Page
Packages
Classes
Files
File List
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
TrueSync.TSVector
A vector structure.
Definition:
TSVector.cs:29
TrueSync.TSRay
Represents a ray with origin and direction.
Definition:
TSRay.cs:7
TrueSync
Definition:
LayerCollisionMatrix.cs:3
Generated by
1.8.11