Skip to content

Commit

Permalink
Merge pull request #55 from hugohadfield/bumptheganj
Browse files Browse the repository at this point in the history
Bump ganja.js and get version number for new release
  • Loading branch information
hugohadfield authored Mar 11, 2021
2 parents 80a589a + e48c230 commit 8664dba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyganja/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# 1) we don't load dependencies by storing it in __init__.py
# 2) we can import it in setup.py for the same reason
# 3) we can import it into your module
__version__ = '0.0.13'
__version__ = '0.0.14'
2 changes: 1 addition & 1 deletion pyganja/static/ganja.js
Submodule ganja.js updated 97 files
+1 −0 .gitignore
+1 −1 codegen/cpp.template.js
+24 −2 codegen/cpp/c.cpp
+114 −32 codegen/cpp/cga.cpp
+24 −2 codegen/cpp/dual.cpp
+24 −2 codegen/cpp/hyperbolic.cpp
+30 −4 codegen/cpp/mink.cpp
+16 −16 codegen/cpp/pga3d.cpp
+30 −4 codegen/cpp/quat.cpp
+30 −4 codegen/cpp/r2.cpp
+42 −8 codegen/cpp/r3.cpp
+66 −16 codegen/cpp/spacetime.cpp
+26 −2 codegen/csharp/c.cs
+116 −32 codegen/csharp/cga.cs
+26 −2 codegen/csharp/dual.cs
+26 −2 codegen/csharp/hyperbolic.cs
+32 −4 codegen/csharp/mink.cs
+16 −16 codegen/csharp/pga3d.cs
+32 −4 codegen/csharp/quat.cs
+32 −4 codegen/csharp/r2.cs
+44 −8 codegen/csharp/r3.cs
+68 −16 codegen/csharp/spacetime.cs
+1 −1 codegen/makefile
+24 −3 codegen/python/c.py
+114 −33 codegen/python/cga.py
+24 −3 codegen/python/dual.py
+24 −3 codegen/python/hyperbolic.py
+30 −5 codegen/python/mink.py
+16 −16 codegen/python/pga3d.py
+30 −5 codegen/python/quat.py
+30 −5 codegen/python/r2.py
+42 −9 codegen/python/r3.py
+66 −17 codegen/python/spacetime.py
+2 −2 codegen/rs.template.js
+43 −3 codegen/rust/c.rs
+133 −33 codegen/rust/cga.rs
+43 −3 codegen/rust/dual.rs
+43 −3 codegen/rust/hyperbolic.rs
+49 −5 codegen/rust/mink.rs
+17 −17 codegen/rust/pga3d.rs
+49 −5 codegen/rust/quat.rs
+49 −5 codegen/rust/r2.rs
+61 −9 codegen/rust/r3.rs
+85 −17 codegen/rust/spacetime.rs
+137 −8 examples/coffeeshop.html
+53 −0 examples/example_cga2d_conformal.html
+35 −0 examples/example_cga2d_conformal2.html
+68 −0 examples/example_csga2d_opns.html
+20 −13 examples/example_pga2d_desargues_theorem.html
+32 −25 examples/example_pga2d_distances_and_angles.html
+23 −13 examples/example_pga2d_euler_line.html
+14 −11 examples/example_pga2d_inverse_kinematics.html
+20 −18 examples/example_pga2d_isometries.html
+65 −0 examples/example_pga2d_non_euclidean.html
+13 −9 examples/example_pga2d_origami.html
+3 −3 examples/example_pga2d_physics_moon.html
+55 −34 examples/example_pga2d_points_and_lines.html
+9 −7 examples/example_pga2d_poncelet.html
+12 −12 examples/example_pga2d_pose_estimation.html
+25 −23 examples/example_pga2d_project_and_reject.html
+420 −0 examples/example_pga2d_raytrace.html
+52 −25 examples/example_pga2d_rotors_and_translators.html
+22 −5 examples/example_pga2d_separating_axis.html
+6 −6 examples/example_pga3d_differentiation.html
+9 −9 examples/example_pga3d_distances_and_angles.html
+4 −4 examples/example_pga3d_levenberg_marquardt.html
+1 −1 examples/example_pga3d_objects.html
+1 −1 examples/example_pga3d_physics_free_top.html
+1 −1 examples/example_pga3d_physics_planets.html
+57 −40 examples/example_pga3d_points_and_lines.html
+49 −32 examples/example_pga3d_rotors_and_translators.html
+1 −1 examples/example_pga3d_sampling.html
+2 −2 examples/example_pga3d_skinning.html
+3 −3 examples/example_pga3d_slicing.html
+246 −99 ganja.js
+ images/cga2d_conformal.jpg
+ images/cga2d_conformal2.jpg
+ images/csga2d_opns.jpg
+ images/pga2d_desargues_theorem.jpg
+ images/pga2d_distances_and_angles.jpg
+ images/pga2d_euler_line.jpg
+ images/pga2d_inverse_kinematics.jpg
+ images/pga2d_isometries.jpg
+ images/pga2d_non_euclidean.jpg
+ images/pga2d_points_and_lines.jpg
+ images/pga2d_poncelet.jpg
+ images/pga2d_pose_estimation.jpg
+ images/pga2d_project_and_reject.jpg
+ images/pga2d_raytrace.jpg
+ images/pga2d_rotors_and_translators.jpg
+ images/pga2d_separating_axis.jpg
+ images/pga3d_differentiation.jpg
+ images/pga3d_distances_and_angles.jpg
+ images/pga3d_points_and_lines.jpg
+ images/pga3d_sampling.jpg
+ images/pga3d_skinning.jpg
+1 −1 package.json

0 comments on commit 8664dba

Please sign in to comment.