示例#1
0
        public BodySphere createShphere(Space space, Vector3f position, float radius, Vector3f force)
        {
            BodySphere b = new BodySphere(this, space, position, radius, force);

            listBodiesSpheres.Add(b);
            return(b);
        }
示例#2
0
文件: World.cs 项目: hyyly/teslagame
 public BodySphere createShphere(Space space, Vector3f position, float radius, Vector3f force)
 {
     BodySphere b = new BodySphere(this, space, position, radius, force);
     listBodiesSpheres.Add(b);
     return b;
 }