예제 #1
0
 public BoundingBoxNode(PotatoBox box, PotatoEntity entity, BoundingBoxNode parent) : this(parent)
 {
     Box    = box;
     Entity = entity;
     IsMesh = typeof(PotatoMesh).IsAssignableFrom(entity.GetType());
 }
예제 #2
0
 public BoundingBoxTree(BoundingBoxNode child)
 {
     Root = child;
 }
예제 #3
0
 public BoundingBoxNode(BoundingBoxNode parent)
 {
     Parent = parent;
 }