def draw_dot()

in gym_pusht/envs/pymunk_override.py [0:0]


    def draw_dot(self, size: float, pos: Tuple[float, float], color: SpaceDebugColor) -> None:
        p = to_pygame(pos, self.surface)
        pygame.draw.circle(self.surface, color.as_int(), p, round(size), 0)