Example #1
0
 public BSPNode()
 {
     plane         = new Plane();
     unknown_point = new UVector();
     zone          = new int[2];
     leaf          = new int[2];
 }
Example #2
0
 public AActor() : base()
 {
     Location    = new UVector();
     Rotation    = new URotator();
     DrawScale3D = new UVector();
     PrePivot    = new UVector();
     StaticMesh  = 0;
 }
Example #3
0
 public Sphere()
 {
     location = new UVector();
 }
Example #4
0
 public Box()
 {
     min      = new UVector();
     max      = new UVector();
     is_valid = 0;
 }