public BoxConstraint(
     global::Improbable.Coordinates center,
     global::Improbable.EdgeLength edgeLength)
 {
     this.center     = center;
     this.edgeLength = edgeLength;
 }
 public CylinderConstraint(
     global::Improbable.Coordinates center,
     double radius)
 {
     this.center = center;
     this.radius = radius;
 }
示例#3
0
 public PositionData(global::Improbable.Coordinates coords)
 {
     this.coords = coords;
 }
示例#4
0
 public SphereConstraint(global::Improbable.Coordinates center, double radius)
 {
     Center = center;
     Radius = radius;
 }
示例#5
0
 public Update SetCoords(global::Improbable.Coordinates _value)
 {
     coords.Set(_value);
     return(this);
 }
示例#6
0
 public Data(global::Improbable.Coordinates coords)
 {
     Value = new global::Improbable.PositionData(coords);
 }