Metadata-Version: 2.1
Name: SimpleVectors
Version: 0.0.5
Summary: Python Package for playing with Simple Vectors passing through a point
Home-page: UNKNOWN
Author: Jonathan Ghodke
Author-email: Jonathanghodke@gmail.com
License: UNKNOWN
Keywords: python,Vectors,vectors,simple vectors
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: matplotlib

# SimpleVectors

Very easy to use module which provides functions to add vectors using their magnitude and direction (angle) w.r.t x-axis. 
All the vectors which will be added are assumed to be passing through the same line



# Usage Example


```python
    from  simplevectors  import  simplevector, addvectors

    #Create vectors using their magnitude and their angle w.r.t x axis in degrees
    vector1  =  simplevector(10, 0)
    vector2  =  simplevector(10, 90)

    resultant_vector  = addvectors(vector1, vector2)

    print("Resultant Vector Magnitude: {}, Direction: {}".format(resultant_vector.magnitude, resultant_vector.direction))
```

