o
    oh?:                     @   s`   d dl mZmZ d dlmZ d dlmZ ddgiZdadd Z	d	d
 Z
dd ZG dd dZdS )    )
BaseSeriesGenericDataSeriessympy_deprecation_warning)is_sequence)Plot.appendPlot.extend
matplotlibTc                   C   s   da dS )z/
    Disable show(). For use in the tests.
    FN)_show r   r   x/var/www/html/construction_image-detection-poc/venv/lib/python3.10/site-packages/sympy/plotting/backends/base_backend.py
unset_show   s   r   c                 C   s"   t d|  d|  ddddd d S )NzThe `z` property is deprecated. The `z` keyword argument should be passed to a plotting function, which generates the appropriate data series. If needed, index the plot object to retrieve a specific data series.z1.13z.deprecated-markers-annotations-fill-rectangles   )deprecated_since_versionactive_deprecations_target
stacklevelr   )attrr   r   r   _deprecation_msg_m_a_r_f   s   
r   c                  K   st   g d}g }|D ]/}|  |g }|d u rg }t|tr|g}|D ]}| dg }|t|g|R i | q q|S )N)annotationsmarkersfill
rectanglesargs)pop
isinstancedictappendr   )kwargskeywordsserieskwdictionariesdr   r   r   r   _create_generic_data_series"   s   
r#   c                   @   s  e Zd ZdZddddddddddddddddddddd	d
dZedd Zedd Zdd Zdd Z	dd Z
dd Zdd Zdd Zdd Zdd Zd d! Zed"d# Zejd$d# Zed%d& Zejd'd& Zed(d) Zejd*d) Zed+d, Zejd-d, ZdS ).Plota  Base class for all backends. A backend represents the plotting library,
    which implements the necessary functionalities in order to use SymPy
    plotting functions.

    For interactive work the function :func:`plot` is better suited.

    This class permits the plotting of SymPy expressions using numerous
    backends (:external:mod:`matplotlib`, textplot, the old pyglet module for SymPy, Google
    charts api, etc).

    The figure can contain an arbitrary number of plots of SymPy expressions,
    lists of coordinates of points, etc. Plot has a private attribute _series that
    contains all data series to be plotted (expressions for lines or surfaces,
    lists of points, etc (all subclasses of BaseSeries)). Those data series are
    instances of classes not imported by ``from sympy import *``.

    The customization of the figure is on two levels. Global options that
    concern the figure as a whole (e.g. title, xlabel, scale, etc) and
    per-data series options (e.g. name) and aesthetics (e.g. color, point shape,
    line type, etc.).

    The difference between options and aesthetics is that an aesthetic can be
    a function of the coordinates (or parameters in a parametric plot). The
    supported values for an aesthetic are:

    - None (the backend uses default values)
    - a constant
    - a function of one variable (the first coordinate or parameter)
    - a function of two variables (the first and second coordinate or parameters)
    - a function of three variables (only in nonparametric 3D plots)

    Their implementation depends on the backend so they may not work in some
    backends.

    If the plot is parametric and the arity of the aesthetic function permits
    it the aesthetic is calculated over parameters and not over coordinates.
    If the arity does not permit calculation over parameters the calculation is
    done over coordinates.

    Only cartesian coordinates are supported for the moment, but you can use
    the parametric plots to plot in polar, spherical and cylindrical
    coordinates.

    The arguments for the constructor Plot must be subclasses of BaseSeries.

    Any global option can be specified as a keyword argument.

    The global options for a figure are:

    - title : str
    - xlabel : str or Symbol
    - ylabel : str or Symbol
    - zlabel : str or Symbol
    - legend : bool
    - xscale : {'linear', 'log'}
    - yscale : {'linear', 'log'}
    - axis : bool
    - axis_center : tuple of two floats or {'center', 'auto'}
    - xlim : tuple of two floats
    - ylim : tuple of two floats
    - aspect_ratio : tuple of two floats or {'auto'}
    - autoscale : bool
    - margin : float in [0, 1]
    - backend : {'default', 'matplotlib', 'text'} or a subclass of BaseBackend
    - size : optional tuple of two floats, (width, height); default: None

    The per data series options and aesthetics are:
    There are none in the base series. See below for options for subclasses.

    Some data series support additional aesthetics or options:

    :class:`~.LineOver1DRangeSeries`, :class:`~.Parametric2DLineSeries`, and
    :class:`~.Parametric3DLineSeries` support the following:

    Aesthetics:

    - line_color : string, or float, or function, optional
        Specifies the color for the plot, which depends on the backend being
        used.

        For example, if ``MatplotlibBackend`` is being used, then
        Matplotlib string colors are acceptable (``"red"``, ``"r"``,
        ``"cyan"``, ``"c"``, ...).
        Alternatively, we can use a float number, 0 < color < 1, wrapped in a
        string (for example, ``line_color="0.5"``) to specify grayscale colors.
        Alternatively, We can specify a function returning a single
        float value: this will be used to apply a color-loop (for example,
        ``line_color=lambda x: math.cos(x)``).

        Note that by setting line_color, it would be applied simultaneously
        to all the series.

    Options:

    - label : str
    - steps : bool
    - integers_only : bool

    :class:`~.SurfaceOver2DRangeSeries` and :class:`~.ParametricSurfaceSeries`
    support the following:

    Aesthetics:

    - surface_color : function which returns a float.

    Notes
    =====

    How the plotting module works:

    1. Whenever a plotting function is called, the provided expressions are
       processed and a list of instances of the
       :class:`~sympy.plotting.series.BaseSeries` class is created, containing
       the necessary information to plot the expressions
       (e.g. the expression, ranges, series name, ...). Eventually, these
       objects will generate the numerical data to be plotted.
    2. A subclass of :class:`~.Plot` class is instantiaed (referred to as
       backend, from now on), which stores the list of series and the main
       attributes of the plot (e.g. axis labels, title, ...).
       The backend implements the logic to generate the actual figure with
       some plotting library.
    3. When the ``show`` command is executed, series are processed one by one
       to generate numerical data and add it to the figure. The backend is also
       going to set the axis labels, title, ..., according to the values stored
       in the Plot instance.

    The backend should check if it supports the data series that it is given
    (e.g. :class:`TextBackend` supports only
    :class:`~sympy.plotting.series.LineOver1DRangeSeries`).

    It is the backend responsibility to know how to use the class of data series
    that it's given. Note that the current implementation of the ``*Series``
    classes is "matplotlib-centric": the numerical data returned by the
    ``get_points`` and ``get_meshes`` methods is meant to be used directly by
    Matplotlib. Therefore, the new backend will have to pre-process the
    numerical data to make it compatible with the chosen plotting library.
    Keep in mind that future SymPy versions may improve the ``*Series`` classes
    in order to return numerical data "non-matplotlib-centric", hence if you code
    a new backend you have the responsibility to check if its working on each
    SymPy release.

    Please explore the :class:`MatplotlibBackend` source code to understand
    how a backend should be coded.

    In order to be used by SymPy plotting functions, a backend must implement
    the following methods:

    * show(self): used to loop over the data series, generate the numerical
        data, plot it and set the axis labels, title, ...
    * save(self, path): used to save the current plot to the specified file
        path.
    * close(self): used to close the current plot backend (note: some plotting
        library does not support this functionality. In that case, just raise a
        warning).
    NautoTlinearFr   default)titlexlabelylabelzlabelaspect_ratioxlimylimaxis_centeraxisxscaleyscalelegend	autoscalemarginr   r   r   r   backendsizec                   s   |_ |_|_|_|_|_|	_|
_|_|_	|_
|_|_|_|_|_g _j| jt||||d dd dd   fdd}d _|d| d _|d| d _|d	| d S )
N)r   r   r   r   c                 S      t dd | D S )Nc                 s       | ]	}t |d dV  qdS )is_realTNgetattr.0ir   r   r   	<genexpr>       2Plot.__init__.<locals>.<lambda>.<locals>.<genexpr>alllimr   r   r   <lambda>       zPlot.__init__.<locals>.<lambda>c                 S   r8   )Nc                 s   r9   )	is_finiteTNr;   r=   r   r   r   r@      rA   rB   rC   rE   r   r   r   rG      rH   c                    s\   |r,|st d| | |st d| |t| t|d t|d f d S d S )Nz#All numbers from {}={} must be realz%All numbers from {}={} must be finiter      )
ValueErrorformatsetattrfloat)t_nametrI   r:   selfr   r   check_and_set   s   

$z$Plot.__init__.<locals>.check_and_setr-   r.   r7   )r(   r)   r*   r+   r,   r/   r0   r1   r2   r3   r4   r5   _annotations_markers_rectangles_fill_seriesextendr#   r-   r.   r7   )rR   r(   r)   r*   r+   r,   r-   r.   r/   r0   r1   r2   r3   r4   r5   r   r   r   r   r6   r7   r   r   rS   r   rQ   r   __init__   sB   



zPlot.__init__c                 C   s   | S Nr   rR   r   r   r   _backend  s   zPlot._backendc                 C   s   t | S r[   )typer\   r   r   r   r6     s   zPlot.backendc                 C   s"   dd t | jD }dd| S )Nc                 S   s    g | ]\}}d | t | qS )z[%d]: )str)r>   r?   sr   r   r   
<listcomp>  s    z Plot.__str__.<locals>.<listcomp>zPlot object containing:

)	enumeraterX   join)rR   series_strsr   r   r   __str__  s   zPlot.__str__c                 C   s
   | j | S r[   rX   rR   indexr   r   r   __getitem__  s   
zPlot.__getitem__c                 G   s0   t |dkrt|d tr|| j|< d S d S d S )NrJ   r   )lenr   r   rX   )rR   ri   r   r   r   r   __setitem__  s   zPlot.__setitem__c                 C   s   | j |= d S r[   rg   rh   r   r   r   __delitem__  s   zPlot.__delitem__c                 C   s"   t |tr| j| dS td)aE  Adds an element from a plot's series to an existing plot.

        Examples
        ========

        Consider two ``Plot`` objects, ``p1`` and ``p2``. To add the
        second plot's first series object to the first, use the
        ``append`` method, like so:

        .. plot::
           :format: doctest
           :include-source: True

           >>> from sympy import symbols
           >>> from sympy.plotting import plot
           >>> x = symbols('x')
           >>> p1 = plot(x*x, show=False)
           >>> p2 = plot(x, show=False)
           >>> p1.append(p2[0])
           >>> p1
           Plot object containing:
           [0]: cartesian line: x**2 for x over (-10.0, 10.0)
           [1]: cartesian line: x for x over (-10.0, 10.0)
           >>> p1.show()

        See Also
        ========

        extend

        z'Must specify element of plot to append.N)r   r   rX   r   	TypeErrorrR   argr   r   r   r     s   
 r   c                 C   s<   t |tr| j|j dS t|r| j| dS td)a  Adds all series from another plot.

        Examples
        ========

        Consider two ``Plot`` objects, ``p1`` and ``p2``. To add the
        second plot to the first, use the ``extend`` method, like so:

        .. plot::
           :format: doctest
           :include-source: True

           >>> from sympy import symbols
           >>> from sympy.plotting import plot
           >>> x = symbols('x')
           >>> p1 = plot(x**2, show=False)
           >>> p2 = plot(x, -x, show=False)
           >>> p1.extend(p2)
           >>> p1
           Plot object containing:
           [0]: cartesian line: x**2 for x over (-10.0, 10.0)
           [1]: cartesian line: x for x over (-10.0, 10.0)
           [2]: cartesian line: -x for x over (-10.0, 10.0)
           >>> p1.show()

        z(Expecting Plot or sequence of BaseSeriesN)r   r$   rX   rY   r   rn   ro   r   r   r   rY   D  s
   
r   c                 C      t r[   NotImplementedErrorr\   r   r   r   showf     z	Plot.showc                 C   rq   r[   rr   )rR   pathr   r   r   savei  ru   z	Plot.savec                 C   rq   r[   rr   r\   r   r   r   closel  ru   z
Plot.closec                 C      t d | jS ).. deprecated:: 1.13r   )r   rU   r\   r   r   r   r   q     zPlot.markersc                 C   $   t d | jt|d || _dS )rz   r   )r   N)r   rX   rY   r#   rU   rR   vr   r   r   r   w     
c                 C   ry   )rz   r   )r   rT   r\   r   r   r   r   ~  r{   zPlot.annotationsc                 C   r|   )rz   r   )r   N)r   rX   rY   r#   rT   r}   r   r   r   r     r   c                 C   ry   )rz   r   )r   rV   r\   r   r   r   r     r{   zPlot.rectanglesc                 C   r|   )rz   r   )r   N)r   rX   rY   r#   rV   r}   r   r   r   r     r   c                 C   ry   )rz   r   )r   rW   r\   r   r   r   r     r{   z	Plot.fillc                 C   r|   )rz   r   )r   N)r   rX   rY   r#   rW   r}   r   r   r   r     r   )__name__
__module____qualname____doc__rZ   propertyr]   r6   rf   rj   rl   rm   r   rY   rt   rw   rx   r   setterr   r   r   r   r   r   r   r$   1   sL     
:

%"






r$   N)sympy.plotting.seriesr   r   sympy.utilities.exceptionsr   sympy.utilities.iterablesr   __doctest_requires__r
   r   r   r#   r$   r   r   r   r   <module>   s    