Metadata-Version: 1.0
Name: triangles
Version: 0.1.0
Summary: A simple solver for trigonometric equations.
Home-page: https://github.com/erget/triangles
Author: ['Daniel Lee']
Author-email: lee.daniel.1986@gmail.com
License: COPYING.txt
Description: triangles
        =========
        
        ``triangles`` is a package for easily solving simple trigonometric equations.
        It contains only a single function which takes the name of the sought side
        length, an angle in degrees and a side length as seen from that angle. It
        returns the length of the sought side.
        
        The sought side must be a member of ``["adjacent", "opposite", "hypotenuse"]``.
        
        Usage::
        
            >>> from triangles import solve
            >>> solve("adjacent", 60, hypotenuse=1000)
            500.0000000000001
            >>> solve("opposite", 53, adjacent=7)
            9.289313751342869
            >>> solve("hypotenuse", 68, opposite=70)
            75.49743198743084
        
        ``triangles`` is maintained by `Daniel Lee <mailto:Lee.Daniel.1986@gmail.com>`_
        and is released under the `GNU Greater Public License
        <http://www.gnu.org/licenses/gpl.txt>`_. If you're interested in contributing,
        `fork the project on Github <https://github.com/erget/apisElectronica>`_!
        Please let me know if you use it for anything especially interesting.
        
Platform: UNKNOWN
