Skip to main content

provides 3D position Vectors as Python objects

Project description

pyvectors

This is a simple Mathematical Module which is extremely user-friendly. The module deals with 3-dimensional real position Vectors centered at the Origin (0, 0, 0). Using this module, the algebra of Vectors can be easily performed in python.
Vector(x, y, z) -> xi + yj + zk
A lot of help text is included in the class, and in the error messages, hence making the module easy to use.

Attributes of class Vector

Four Vector instances have been already defined in the module. These are:

  • Vector.i -> 1i + 0j + 0k
  • Vector.j -> 0i + 1j + 0k
  • Vector.k -> 0i + 0j + 1k
  • Vector.null -> 0i + 0j + 0k

These Vectors cannot be created through the Vector() constructor. Functions evaluating to these Vectors will return the predefined objects only. If these Vectors are changed by the user, the class may misbehave. Hence, user is advised to treat these objects as "read-only".

Attributes of Vector objects

Vectors have attributes like x, y, z, magnitude, tuple, ...
Attributes of Vectors are read-only. Manually editing any of them results in unexpected behavior, which renders the object useless and prone to errors.

Methods

  • add two Vectors:

    returns resultant of the two Vectors
    can be achieved through v1 + v2

  • subtract two Vectors:

    returns the difference of the Vectors
    can be achieved through v1 - v2

  • Vector.dot(v1, v2)

    returns dot product of the two Vectors

  • Vector.cross(v1, v2)

    returns cross product of the two Vectors

  • Vector.scale(v, k)

    returns the Vector obtained by scaling the components of v by k
    can also be achieved through v * k

  • Vector.angle(v1, v2)

    returns the angle between the two Vectors

  • Vector.scalar_triple(v1, v2, v3)

    returns the scalar triple product of the Vectors taken in order

  • Vector.vector_triple(v1, v2, v3)

    returns the vector triple product of the Vectors taken in order

  • Vector.unit(v)

    returns the Unit Vector along the direction of v

  • Vector.mod(v)

    returns the magnitude or absolute value of v
    can also be achieved through abs(v)

Alternate Vector constructors:

  • Vector.FromAngles(alpha, beta, gamma, mod=n)

    creates a Vector inclined to the co-ordinate axes (X, Y and Z) at angles alpha, beta and gamma respectively, with the given magnitude

  • Vector.FromSequence(seq)

    creates a Vector whose components are taken from the given list, tuple or dict
    to pass a dict as an argument, appropriate keys ("x", "y", "z") or ("i", "j", "k") must be used

And many more... Each function contains help text that can be accessed through help() in python to know more about it. Users are advised to read help() on methods they want to use to ensure required results.

Plotting a Vector

Two methods allow you to plot the Vector on a 3-dimensional mathematical plot:

  • Vector.plot(v1):

    plots single Vector

  • Vector.plot_vectors(v1, v2, v3, ..., vn, show_legend=True):

    plots multiple Vectors on the same grid show_legend is a boolean which displays legend on the plot if True

Updates (0.2.2)

Minor bug fixes:

  • Fixed: all math domain errors
  • Fixed: issues with plotting multiple Vectors

Updates (0.2.3)

Added methods which allow you to rotate Vectors using the Right-Hand Rule and Matrix Rotation:

  • Vector.rotate(v, yaw=x, pitch=y, roll=z)

    rotates the Vector by the given yaw, pitch and roll angles
    formally, this corresponds to an intrinsic rotation whose Tait-Bryan angles are x, y and z about the axes Z, Y and X respectively

  • Vector.rotate_vector(v1, v2, phi=value)

    rotates Vector v1 phi degrees about Vector v2
    when phi > 0, the rotation will be counter-clockwise when v2 points towards the observer

  • Vector.rotate_axis(v, axis="A", phi=value)

    rotates the Vector phi degrees about the positive direction of the given axis
    when phi > 0, the rotation will be counter-clockwise when the positive direction of axis of rotation points towards the observer

Updates (0.2.4)

You can now compare Vectors using built-in operators < and >. These operators are used to compare the magnitude / absolute value of two Vector objects. For example:

  • v1 > v2 returns True if Vector.mod(v1) > Vector.mod(v2) and False in all other cases
  • v1 < v2 returns True if Vector.mod(v1) < Vector.mod(v2) and False in all other cases

Note that relational operators <= and >= will still not be defined for Vector Objects as they lead to ambiguity. (Whether to compare magnitudes or compare for actual equality)

Updates (0.2.5)

Added new methods:

  • Vector.exp(v)

    returns a Vector in the direction of v whose magnitude is equal to the exponential of the magnitude of v

  • Vector.polar_repr(v)

    returns a str of the representation of v in its polar form (in terms of its magnitude and the angles it subtends at the axes)

Updates (0.2.6)

  • Minor bug fixes:
    • Fixed: values being close but not being recognized as being close in methods like:
      • bool()
      • isunit(v)
      • isinverse(v1, v2)
      • isparallel(v1, v2)
      • isperpendicular(v1, v2)
  • Alternate constructor Vector.FromSequence(seq) can now accept generators / generator expressions as argument

Reach out to me

Feel free to reach out to me if you notice any bugs or if you need any kind of help from me in understanding the usage of the module or the source code. My email: knightt1821@gmail.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyvectors-0.2.6.tar.gz (13.3 kB view details)

Uploaded Source

Built Distribution

pyvectors-0.2.6-py3-none-any.whl (11.5 kB view details)

Uploaded Python 3

File details

Details for the file pyvectors-0.2.6.tar.gz.

File metadata

  • Download URL: pyvectors-0.2.6.tar.gz
  • Upload date:
  • Size: 13.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

File hashes

Hashes for pyvectors-0.2.6.tar.gz
Algorithm Hash digest
SHA256 6cb3cf1b2edb0e64219e1c8d9b13979b9b3175d572fb23ed2a1ac39be574acb1
MD5 d8df79cd88c7daf7830e72937ad47d4b
BLAKE2b-256 7d3de12d3760e361d1fcdd84814cc5e51950091bef1d61840af6055f7873f477

See more details on using hashes here.

File details

Details for the file pyvectors-0.2.6-py3-none-any.whl.

File metadata

  • Download URL: pyvectors-0.2.6-py3-none-any.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

File hashes

Hashes for pyvectors-0.2.6-py3-none-any.whl
Algorithm Hash digest
SHA256 31f3acb67b38c8a6ca27a753b5582cbe7a60b21c0774e62751d82cb3c3d23925
MD5 8cbb6de42ec123c0c355cb9406649b42
BLAKE2b-256 f5c9cce047603d1ed8470d484ab313890b9a45ed45eb2e1b840017efe23d6d17

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page