Example #1
0
        public BodyBox createBox(Space space, Vector3f position, Vector3f size, Vector3f force)
        {
            BodyBox b = new BodyBox(this, space, position, size, force);

            listBodiesBoxes.Add(b);
            return(b);
        }
Example #2
0
 public BodyBox createBox(Space space, Vector3f position, Vector3f size, Vector3f force)
 {
     BodyBox b = new BodyBox(this, space, position, size, force);
     listBodiesBoxes.Add(b);
     return b;
 }