Skip to main content

Python interface to ganja.js

Project description

pyganja

PyPI

Visualisation library for geometric algebra with cefpython and ganja.js

This is a module for visualing Geometric Algebra from scripts and also from jupyter notebooks, it relies on ganja.js to render Geometric Algebra objects. If you are calling its api from a script it will render them in a cefpython window or if you are in a notebook it can simply render in the notebook itself.

Use

This library is not specifically tied to the clifford library but is designed to work well with it. An example of the syntax that you would use combining these two libraries:

from clifford.tools.g3c import random_line
from pyganja import *

draw([random_line() for i in range(10)])

Produces: Random lines

Mulitple grades of object can be drawn in the same scene with different colors and transparencies

from clifford.g3c import *
from clifford.tools.g3c import *
from pyganja import *

P1 = up(random_euc_mv()*0.1)
P2 = up(random_euc_mv()*0.1)
P3 = up(random_euc_mv()*0.1)
P4 = up(random_euc_mv()*0.1)

# The sphere is the outer product of all 4
S = (P1^P2^P3^P4).normal()

# A line is the outer product of 2 with ninf
L = P1^P2^einf

# The inversion of a line in a sphere is a circle
C = S*L*S

# The tangent to the circle at the intersection point is the reflected line
Ldash = (P1|C)^einf

# The tangent plane to the sphere at the intersection point can be easily found
Ppi = (P1|S)^einf

sc = GanjaScene()
sc.add_objects([P1,P2,P3,P4], color=Color.BLACK)
sc.add_objects([L], color=Color.BLUE)
sc.add_objects([Ldash], color=Color.RED)
sc.add_objects([C], color=Color.RED)
sc.add_objects([S*einf*S], color=Color.BLACK)
sc.add_objects([S])
sc.add_objects([Ppi], color=rgb2hex((0,100,0))+int('70000000',16))
draw(sc,scale=0.5)

Produces: Sphere reflection

Installation

git clone git@github.com:hugohadfield/pyganja.git
cd pyganja
python3 setup.py install

TODO

This is still very much a work in progress, currently it only handles PGA and CGA

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

pyganja-0.0.15.tar.gz (45.0 kB view details)

Uploaded Source

Built Distribution

pyganja-0.0.15-py3-none-any.whl (45.0 kB view details)

Uploaded Python 3

File details

Details for the file pyganja-0.0.15.tar.gz.

File metadata

  • Download URL: pyganja-0.0.15.tar.gz
  • Upload date:
  • Size: 45.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for pyganja-0.0.15.tar.gz
Algorithm Hash digest
SHA256 884143a1954e385d5e2c5d8621aae59cbf4f4fc049408e9c902f5470729e6ab2
MD5 5c0d9a7850a89558d2fe3eeb160285f4
BLAKE2b-256 78b48afdc1ecf16735f9f381620a7e4944fa5bcf63c6eecca317c9e95dcc4b5e

See more details on using hashes here.

File details

Details for the file pyganja-0.0.15-py3-none-any.whl.

File metadata

  • Download URL: pyganja-0.0.15-py3-none-any.whl
  • Upload date:
  • Size: 45.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for pyganja-0.0.15-py3-none-any.whl
Algorithm Hash digest
SHA256 6d18b19372a3fc7f6f19fbc6d52a545fa039f1220f12405c81dac6b3ed076cb3
MD5 babd8418e901254e297100729e509b86
BLAKE2b-256 03e9f522fbfcc8f813c084868c848909ad7bd51276105862c5378db35d505613

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