예제 #1
0
 /// <summary>
 /// Smallest cell that contains given box.
 /// </summary>
 public Cell2d(Box2f box) : this(new Box2d(box))
 {
 }
예제 #2
0
 public Box2d(Box2f box)
 {
     Min = (V2d)box.Min;
     Max = (V2d)box.Max;
 }