// RemoveStaticShape removes a collision shape added using AddStaticShape() from the simulation. func (s *Space) RemoveStaticShape(sh Shape) { C.cpSpaceRemoveStaticShape(s.c(), sh.c()) }
func (s *Space) RemoveStaticShape(shape *Shape) { C.cpSpaceRemoveStaticShape(s.CPSpace, shape.CPShape) }