o
    oh_T                     @   s   d Z ddlmZmZ ddlmZmZmZmZm	Z	m
Z
 ddlmZ ddlmZ ddlmZ ddlmZmZ ddlmZ g d	ZG d
d deZG dd deZG dd deZdd ZdS )z.Geometry objects for use by wrapping pathways.    )ABCabstractmethod)Integeracospisqrtsympifytan)Eq)atan2)cancel)Vectordot)trigsimp)WrappingGeometryBaseWrappingCylinderWrappingSpherec                   @   sL   e Zd ZdZeedd Zedd Zedd Zedd	 Z	d
d Z
dS )r   zAbstract base class for all geometry classes to inherit from.

    Notes
    =====

    Instances of this class cannot be directly instantiated by users. However,
    it can be used to created custom geometry types through subclassing.

    c                 C      dS )z0The point with which the geometry is associated.N )clsr   r   }/var/www/html/construction_image-detection-poc/venv/lib/python3.10/site-packages/sympy/physics/mechanics/wrapping_geometry.pypoint   s   zWrappingGeometryBase.pointc                 C   r   )zReturns ``True`` if a point is on the geometry's surface.

        Parameters
        ==========
        point : Point
            The point for which it's to be ascertained if it's on the
            geometry's surface or not.

        Nr   selfr   r   r   r   point_on_surface%   s   z%WrappingGeometryBase.point_on_surfacec                 C   r   )aG  Returns the shortest distance between two points on a geometry's
        surface.

        Parameters
        ==========

        point_1 : Point
            The point from which the geodesic length should be calculated.
        point_2 : Point
            The point to which the geodesic length should be calculated.

        Nr   r   point_1point_2r   r   r   geodesic_length2   s   z$WrappingGeometryBase.geodesic_lengthc                 C   r   )  The vectors parallel to the geodesic at the two end points.

        Parameters
        ==========

        point_1 : Point
            The point from which the geodesic originates.
        point_2 : Point
            The point at which the geodesic terminates.

        Nr   r   r   r   r   geodesic_end_vectorsB   s   z)WrappingGeometryBase.geodesic_end_vectorsc                 C   s   | j j dS )z,Default representation of a geometry object.z())	__class____name__r   r   r   r   __repr__Q      zWrappingGeometryBase.__repr__N)r"   
__module____qualname____doc__propertyr   r   r   r   r    r$   r   r   r   r   r      s    



r   c                   @   sl   e Zd ZdZdd Zedd Zejdd Zedd Zejd	d Zd
d Z	dd Z
dd Zdd ZdS )r   aU  A solid spherical object.

    Explanation
    ===========

    A wrapping geometry that allows for circular arcs to be defined between
    pairs of points. These paths are always geodetic (the shortest possible).

    Examples
    ========

    To create a ``WrappingSphere`` instance, a ``Symbol`` denoting its radius
    and ``Point`` at which its center will be located are needed:

    >>> from sympy import symbols
    >>> from sympy.physics.mechanics import Point, WrappingSphere
    >>> r = symbols('r')
    >>> pO = Point('pO')

    A sphere with radius ``r`` centered on ``pO`` can be instantiated with:

    >>> WrappingSphere(r, pO)
    WrappingSphere(radius=r, point=pO)

    Parameters
    ==========

    radius : Symbol
        Radius of the sphere. This symbol must represent a value that is
        positive and constant, i.e. it cannot be a dynamic symbol, nor can it
        be an expression.
    point : Point
        A point at which the sphere is centered.

    See Also
    ========

    WrappingCylinder: Cylindrical geometry where the wrapping direction can be
        defined.

    c                 C   s   || _ || _dS )zInitializer for ``WrappingSphere``.

        Parameters
        ==========

        radius : Symbol
            The radius of the sphere.
        point : Point
            A point on which the sphere is centered.

        N)radiusr   )r   r*   r   r   r   r   __init__   s   
zWrappingSphere.__init__c                 C      | j S )zRadius of the sphere._radiusr#   r   r   r   r*         zWrappingSphere.radiusc                 C   
   || _ d S Nr-   r   r*   r   r   r   r*         
c                 C   r,   )z(A point on which the sphere is centered._pointr#   r   r   r   r      r/   zWrappingSphere.pointc                 C   r0   r1   r4   r   r   r   r   r      r3   c                 C   s>   | | j}t|trt||}n|d }t|| jd dkS )a  Returns ``True`` if a point is on the sphere's surface.

        Parameters
        ==========

        point : Point
            The point for which it's to be ascertained if it's on the sphere's
            surface or not. This point's position relative to the sphere's
            center must be a simple expression involving the radius of the
            sphere, otherwise this check will likely not work.

           T)pos_fromr   
isinstancer   r   r
   r*   )r   r   point_vectorpoint_radius_squaredr   r   r   r      s
   
zWrappingSphere.point_on_surfacec           	      C   s   ||fD ]%}|  |s)d| d|| j  d| j d|  d| j d}t|q|| j }|| j }t||}| j| }|S )a{	  Returns the shortest distance between two points on the sphere's
        surface.

        Explanation
        ===========

        The geodesic length, i.e. the shortest arc along the surface of a
        sphere, connecting two points can be calculated using the formula:

        .. math::

           l = \arccos\left(\mathbf{v}_1 \cdot \mathbf{v}_2\right)

        where $\mathbf{v}_1$ and $\mathbf{v}_2$ are the unit vectors from the
        sphere's center to the first and second points on the sphere's surface
        respectively. Note that the actual path that the geodesic will take is
        undefined when the two points are directly opposite one another.

        Examples
        ========

        A geodesic length can only be calculated between two points on the
        sphere's surface. Firstly, a ``WrappingSphere`` instance must be
        created along with two points that will lie on its surface:

        >>> from sympy import symbols
        >>> from sympy.physics.mechanics import (Point, ReferenceFrame,
        ...     WrappingSphere)
        >>> N = ReferenceFrame('N')
        >>> r = symbols('r')
        >>> pO = Point('pO')
        >>> pO.set_vel(N, 0)
        >>> sphere = WrappingSphere(r, pO)
        >>> p1 = Point('p1')
        >>> p2 = Point('p2')

        Let's assume that ``p1`` lies at a distance of ``r`` in the ``N.x``
        direction from ``pO`` and that ``p2`` is located on the sphere's
        surface in the ``N.y + N.z`` direction from ``pO``. These positions can
        be set with:

        >>> p1.set_pos(pO, r*N.x)
        >>> p1.pos_from(pO)
        r*N.x
        >>> p2.set_pos(pO, r*(N.y + N.z).normalize())
        >>> p2.pos_from(pO)
        sqrt(2)*r/2*N.y + sqrt(2)*r/2*N.z

        The geodesic length, which is in this case is a quarter of the sphere's
        circumference, can be calculated using the ``geodesic_length`` method:

        >>> sphere.geodesic_length(p1, p2)
        pi*r/2

        If the ``geodesic_length`` method is passed an argument, the ``Point``
        that doesn't lie on the sphere's surface then a ``ValueError`` is
        raised because it's not possible to calculate a value in this case.

        Parameters
        ==========

        point_1 : Point
            Point from which the geodesic length should be calculated.
        point_2 : Point
            Point to which the geodesic length should be calculated.

        .Geodesic length cannot be calculated as point  with radius z from the sphere's center   does not lie on the surface of .)	r   r7   r   	magnituder*   
ValueError	normalizer   r   )	r   r   r   r   msgpoint_1_vectorpoint_2_vectorcentral_angler   r   r   r   r      s&   D

zWrappingSphere.geodesic_lengthc           	      C   s   ||}}| j }||}||}||dkr)d| d| d|  d}t||||| |||| fS )r   r   z:Can't compute geodesic end vectors for the pair of points  and z on a sphere zE as they are diametrically opposed, thus the geodesic is not defined.)r   r7   crossr@   rA   )	r   r   r   pApBpOpA_vecpB_vecrB   r   r   r   r    	  s"   


z#WrappingSphere.geodesic_end_vectorsc                 C   s   | j j d| j d| j dS )z'Representation of a ``WrappingSphere``.(radius=, point=))r!   r"   r*   r   r#   r   r   r   r$   '  s   zWrappingSphere.__repr__N)r"   r&   r'   r(   r+   r)   r*   setterr   r   r   r    r$   r   r   r   r   r   V   s    *



Sr   c                   @   s   e Zd Z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	dd Z
dd Zdd Zdd ZdS )r   aQ  A solid (infinite) cylindrical object.

    Explanation
    ===========

    A wrapping geometry that allows for circular arcs to be defined between
    pairs of points. These paths are always geodetic (the shortest possible) in
    the sense that they will be a straight line on the unwrapped cylinder's
    surface. However, it is also possible for a direction to be specified, i.e.
    paths can be influenced such that they either wrap along the shortest side
    or the longest side of the cylinder. To define these directions, rotations
    are in the positive direction following the right-hand rule.

    Examples
    ========

    To create a ``WrappingCylinder`` instance, a ``Symbol`` denoting its
    radius, a ``Vector`` defining its axis, and a ``Point`` through which its
    axis passes are needed:

    >>> from sympy import symbols
    >>> from sympy.physics.mechanics import (Point, ReferenceFrame,
    ...     WrappingCylinder)
    >>> N = ReferenceFrame('N')
    >>> r = symbols('r')
    >>> pO = Point('pO')
    >>> ax = N.x

    A cylinder with radius ``r``, and axis parallel to ``N.x`` passing through
    ``pO`` can be instantiated with:

    >>> WrappingCylinder(r, pO, ax)
    WrappingCylinder(radius=r, point=pO, axis=N.x)

    Parameters
    ==========

    radius : Symbol
        The radius of the cylinder.
    point : Point
        A point through which the cylinder's axis passes.
    axis : Vector
        The axis along which the cylinder is aligned.

    See Also
    ========

    WrappingSphere: Spherical geometry where the wrapping direction is always
        geodetic.

    c                 C   s   || _ || _|| _dS )a  Initializer for ``WrappingCylinder``.

        Parameters
        ==========

        radius : Symbol
            The radius of the cylinder. This symbol must represent a value that
            is positive and constant, i.e. it cannot be a dynamic symbol.
        point : Point
            A point through which the cylinder's axis passes.
        axis : Vector
            The axis along which the cylinder is aligned.

        N)r*   r   axis)r   r*   r   rQ   r   r   r   r+   d  s   
zWrappingCylinder.__init__c                 C   r,   )zRadius of the cylinder.r-   r#   r   r   r   r*   w  r/   zWrappingCylinder.radiusc                 C   r0   r1   r-   r2   r   r   r   r*   |  r3   c                 C   r,   )z1A point through which the cylinder's axis passes.r4   r#   r   r   r   r     r/   zWrappingCylinder.pointc                 C   r0   r1   r4   r   r   r   r   r     r3   c                 C   r,   )z)Axis along which the cylinder is aligned.)_axisr#   r   r   r   rQ     r/   zWrappingCylinder.axisc                 C   s   |  | _d S r1   )rA   rR   )r   rQ   r   r   r   rQ     r%   c                 C   s\   | | j}|| j| j }|| }t|trt||}n|d }tt|| jd dkS )a  Returns ``True`` if a point is on the cylinder's surface.

        Parameters
        ==========

        point : Point
            The point for which it's to be ascertained if it's on the
            cylinder's surface or not. This point's position relative to the
            cylinder's axis must be a simple expression involving the radius of
            the sphere, otherwise this check will likely not work.

        r6   T)	r7   r   r   rQ   r8   r   r
   r   r*   )r   r   relative_positionparallelr9   r:   r   r   r   r     s   
z!WrappingCylinder.point_on_surfacec                 C   s  ||fD ])}|  |s-d| d|| j  d| j d|  d| j d| j d}t|q||}|| j}|| j}||| j| j   }|| j}	|	|	| j| j   }
t	t
||
| jt
||
}| j| }t|d |d  }|S )a
  The shortest distance between two points on a geometry's surface.

        Explanation
        ===========

        The geodesic length, i.e. the shortest arc along the surface of a
        cylinder, connecting two points. It can be calculated using Pythagoras'
        theorem. The first short side is the distance between the two points on
        the cylinder's surface parallel to the cylinder's axis. The second
        short side is the arc of a circle between the two points of the
        cylinder's surface perpendicular to the cylinder's axis. The resulting
        hypotenuse is the geodesic length.

        Examples
        ========

        A geodesic length can only be calculated between two points on the
        cylinder's surface. Firstly, a ``WrappingCylinder`` instance must be
        created along with two points that will lie on its surface:

        >>> from sympy import symbols, cos, sin
        >>> from sympy.physics.mechanics import (Point, ReferenceFrame,
        ...     WrappingCylinder, dynamicsymbols)
        >>> N = ReferenceFrame('N')
        >>> r = symbols('r')
        >>> pO = Point('pO')
        >>> pO.set_vel(N, 0)
        >>> cylinder = WrappingCylinder(r, pO, N.x)
        >>> p1 = Point('p1')
        >>> p2 = Point('p2')

        Let's assume that ``p1`` is located at ``N.x + r*N.y`` relative to
        ``pO`` and that ``p2`` is located at ``r*(cos(q)*N.y + sin(q)*N.z)``
        relative to ``pO``, where ``q(t)`` is a generalized coordinate
        specifying the angle rotated around the ``N.x`` axis according to the
        right-hand rule where ``N.y`` is zero. These positions can be set with:

        >>> q = dynamicsymbols('q')
        >>> p1.set_pos(pO, N.x + r*N.y)
        >>> p1.pos_from(pO)
        N.x + r*N.y
        >>> p2.set_pos(pO, r*(cos(q)*N.y + sin(q)*N.z).normalize())
        >>> p2.pos_from(pO).simplify()
        r*cos(q(t))*N.y + r*sin(q(t))*N.z

        The geodesic length, which is in this case a is the hypotenuse of a
        right triangle where the other two side lengths are ``1`` (parallel to
        the cylinder's axis) and ``r*q(t)`` (parallel to the cylinder's cross
        section), can be calculated using the ``geodesic_length`` method:

        >>> cylinder.geodesic_length(p1, p2).simplify()
        sqrt(r**2*q(t)**2 + 1)

        If the ``geodesic_length`` method is passed an argument ``Point`` that
        doesn't lie on the sphere's surface then a ``ValueError`` is raised
        because it's not possible to calculate a value in this case.

        Parameters
        ==========

        point_1 : Point
            Point from which the geodesic length should be calculated.
        point_2 : Point
            Point to which the geodesic length should be calculated.

        r;   r<   z from the cylinder's center r=   z
 and axis r>   r6   )r   r7   r   r?   r*   rQ   r@   r   rA   _directional_atanr   rG   r   )r   r   r   r   rB   rS   parallel_lengthpoint_1_relative_positionpoint_1_perpendicular_vectorpoint_2_relative_positionpoint_2_perpendicular_vectorrE   planar_arc_lengthr   r   r   r   r     sP   C



z WrappingCylinder.geodesic_lengthc                 C   s  | | j}| | j}||krd| d| d}t||| j| j }|| j| j }|| }|| }	||	krDtd}
td}n| j| }
| j|	  }| ||}| |}|| j}t	|d |d  }||
 || j   }|| || j   }||fS )r   z:Cannot compute geodesic end vectors for coincident points rF   z as no geodesic exists.r   r6   )
r7   r   r@   r   rQ   r   rG   rA   r   r   )r   r   r   point_1_from_origin_pointpoint_2_from_origin_pointrB   point_1_parallelpoint_2_parallelpoint_1_normalpoint_2_normalpoint_1_perpendicularpoint_2_perpendicularr   rS   rV   r[   rC   rD   r   r   r   r      sD   

z%WrappingCylinder.geodesic_end_vectorsc                 C   s&   | j j d| j d| j d| j dS )z)Representation of a ``WrappingCylinder``.rM   rN   z, axis=rO   )r!   r"   r*   r   rQ   r#   r   r   r   r$   B  s   zWrappingCylinder.__repr__N)r"   r&   r'   r(   r+   r)   r*   rP   r   rQ   r   r   r    r$   r   r   r   r   r   /  s&    4





h2r   c                 C   s   | j r|j rt| |}|dk r|dt 7 }|S | j r'd|  d| d}t||j r7d|  d| d}t|tt| | }t|trK|jd }|S |j	rm|jd t
dkrmt|jd	 trmdt |jd	 jd  }|S d
| d}t|)a  Compute atan in a directional sense as required for geodesics.

    Explanation
    ===========

    To be able to control the direction of the geodesic length along the
    surface of a cylinder a dedicated arctangent function is needed that
    properly handles the directionality of different case. This function
    ensures that the central angle is always positive but shifting the case
    where ``atan2`` would return a negative angle to be centered around
    ``2*pi``.

    Notes
    =====

    This function only handles very specific cases, i.e. the ones that are
    expected to be encountered when calculating symbolic geodesics on uniformly
    curved surfaces. As such, ``NotImplemented`` errors can be raised in many
    cases. This function is named with a leader underscore to indicate that it
    only aims to provide very specific functionality within the private scope
    of this module.

    r   r6   z5Cannot compute a directional atan when the numerator z  is numeric and the denominator z is symbolic.z! is symbolic and the denominator z is numeric.   z0Cannot compute a directional atan for the value r>   )	is_numberr   r   NotImplementedErrorr   r   r8   r	   argsis_Mulr   )	numeratordenominatoranglerB   ratior   r   r   rU   J  s<   


rU   N)r(   abcr   r   sympyr   r   r   r   r   r	   sympy.core.relationalr
   (sympy.functions.elementary.trigonometricr   sympy.polys.polytoolsr   sympy.physics.vectorr   r   sympy.simplify.simplifyr   __all__r   r   r   rU   r   r   r   r   <module>   s      B Z  