public QPosition(Vector3 position,
                  FioraPassive.PassiveType type = FioraPassive.PassiveType.None,
                  Geometry.Polygon polygon      = null)
 {
     Position = position;
     Type     = type;
     Polygon  = polygon;
 }
Exemple #2
0
 public QPosition(Vector3 position,
                  FioraPassive.PassiveType passiveType = FioraPassive.PassiveType.None,
                  Geometry.Polygon polygon             = null,
                  Geometry.Polygon simplePolygon       = null)
 {
     Position      = position;
     PassiveType   = passiveType;
     Polygon       = polygon;
     SimplePolygon = simplePolygon;
 }
 public QPosition(Vector3 position,
     FioraPassive.PassiveType passiveType = FioraPassive.PassiveType.None,
     Geometry.Polygon polygon = null,
     Geometry.Polygon simplePolygon = null)
 {
     Position = position;
     PassiveType = passiveType;
     Polygon = polygon;
     SimplePolygon = simplePolygon;
 }
 public QPosition(Vector3 position,
     FioraPassive.PassiveType type = FioraPassive.PassiveType.None,
     Geometry.Polygon polygon = null)
 {
     Position = position;
     Type = type;
     Polygon = polygon;
 }