Release 2.1.0
- Added
__eq__
and__setitem__
methods toVector
class. - Improved time complexity of
__len__
andmodulus
method. - Rectified error in
__add__
and__sub__
method. __init__
can now handle lists and arrays apart from numbers as an arguement.- Improvised
__repr__
method. A vector now looks like this<1, 0, 0>
instead of[1, 0, 0]
. - Added
is_unit
andis_parellel
methods. - Improved comments in
matmath.py
which can be accessed by usinghelp()
method.