// RemoveShape removes a collision shape from the simulation. func (s *Space) RemoveShape(sh Shape) { C.cpSpaceRemoveShape(s.c(), sh.c()) }
func (s *Space) RemoveShape(shape *Shape) { C.cpSpaceRemoveShape(s.CPSpace, shape.CPShape) }