picogl.backend.gl.fog ===================== .. py:module:: picogl.backend.gl.fog .. autoapi-nested-parse:: Provides constants for working with fog-related properties in OpenGL. This module defines the `GLFog` class, which encapsulates fog-related constants from the OpenGL 1.0 version. These constants can be used to configure fog parameters, including fog color, start and end distances, and fog mode. Classes ------- .. autoapisummary:: picogl.backend.gl.fog.GLFog Functions --------- .. autoapisummary:: picogl.backend.gl.fog.set_fog_state Module Contents --------------- .. py:class:: GLFog gl Fog .. py:attribute:: FOG .. py:attribute:: FOG_COLOR .. py:attribute:: FOG_END .. py:attribute:: FOG_MODE .. py:attribute:: FOG_START .. py:attribute:: FOG_INDEX .. py:function:: set_fog_state(fog_state: bool, fog_density_value: float, fog_start_value: float, fog_end_value: float) -> None set_fog_state :param fog_density_value: float :param fog_end_value: float :param fog_start_value: float :param fog_state: bool :return: None