
    go                     J    d dl Z G d dej                  j                        Zy)    Nc                         e Zd Zd fd	Z xZS )LightingValidatorc           
      v    t        t        | 
  d|||j                  dd      |j                  dd      d| y )Ndata_class_strLighting	data_docsaj  
            ambient
                Ambient light increases overall color
                visibility but can wash out the image.
            diffuse
                Represents the extent that incident rays are
                reflected in a range of angles.
            facenormalsepsilon
                Epsilon for face normals calculation avoids
                math issues arising from degenerate geometry.
            fresnel
                Represents the reflectance as a dependency of
                the viewing angle; e.g. paper is reflective
                when viewing it from the edge of the paper
                (almost 90 degrees), causing shine.
            roughness
                Alters specular reflection; the rougher the
                surface, the wider and less contrasty the
                shine.
            specular
                Represents the level that incident rays are
                reflected in a single direction, causing shine.
            vertexnormalsepsilon
                Epsilon for vertex normals calculation avoids
                math issues arising from degenerate geometry.
)plotly_nameparent_namer   r    )superr   __init__pop)selfr	   r
   kwargs	__class__s       _/var/www/dash_apps/app1/venv/lib/python3.12/site-packages/plotly/validators/volume/_lighting.pyr   zLightingValidator.__init__   sM    / "	
##!::&6
Cjj	"	
B C"	
    )lightingvolume)__name__
__module____qualname__r   __classcell__)r   s   @r   r   r      s    #
 #
r   r   )_plotly_utils.basevalidators_plotly_utilsbasevalidatorsCompoundValidatorr   r   r   r   <module>r      s     #$
44FF $
r   