예제 #1
0
 public CoordSys(IJsonReadStruct data)
 {
     location      = data.GetValue <GeoPoint>();
     directionX    = data.GetValue <GeoVector>();
     directionY    = data.GetValue <GeoVector>();
     directionZ    = directionX ^ directionY;
     globalToLocal = null;
     localToGlobal = null;
 }
예제 #2
0
 public Plane(IJsonReadStruct data)
 {
     coordSys = data.GetValue <CoordSys>();
 }