phg-vis 1.4.1__tar.gz → 1.4.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. {phg_vis-1.4.1/phg_vis.egg-info → phg_vis-1.4.2}/PKG-INFO +1 -1
  2. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/__init__.py +2 -2
  3. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/pipe_string_phg.py +2 -2
  4. {phg_vis-1.4.1 → phg_vis-1.4.2/phg_vis.egg-info}/PKG-INFO +1 -1
  5. {phg_vis-1.4.1 → phg_vis-1.4.2}/setup.py +1 -1
  6. {phg_vis-1.4.1 → phg_vis-1.4.2}/LICENSE +0 -0
  7. {phg_vis-1.4.1 → phg_vis-1.4.2}/MANIFEST.in +0 -0
  8. {phg_vis-1.4.1 → phg_vis-1.4.2}/README.md +0 -0
  9. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/ai_bridge.py +0 -0
  10. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/gcu_api.py +0 -0
  11. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/phg_to_shader.py +0 -0
  12. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/shader_render.py +0 -0
  13. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/vis/GCU.dll +0 -0
  14. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/vis/dragpad.exe +0 -0
  15. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/vis/dragpad_config.ini +0 -0
  16. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/vis/freeglut.dll +0 -0
  17. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/vis/imgui/main.lua +0 -0
  18. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/vis/lua.dll +0 -0
  19. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/vis/script.phg +0 -0
  20. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/vis/sqlite3.dll +0 -0
  21. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/vis/vis.exe +0 -0
  22. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/vis/vis.ini +0 -0
  23. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/vis/zlib1.dll +0 -0
  24. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/visphg.py +0 -0
  25. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg/web_three.py +0 -0
  26. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg_vis.egg-info/SOURCES.txt +0 -0
  27. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg_vis.egg-info/dependency_links.txt +0 -0
  28. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg_vis.egg-info/requires.txt +0 -0
  29. {phg_vis-1.4.1 → phg_vis-1.4.2}/phg_vis.egg-info/top_level.txt +0 -0
  30. {phg_vis-1.4.1 → phg_vis-1.4.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: phg_vis
3
- Version: 1.4.1
3
+ Version: 1.4.2
4
4
  Summary: A package for the PHG modeling language and 3D visualization tool.
5
5
  Home-page: https://github.com/panguojun/Coordinate-System
6
6
  Author: romeosoft
@@ -11,7 +11,7 @@ Main Features:
11
11
  - Multiple pipe visualization support
12
12
  - Real-time and image rendering capabilities
13
13
 
14
- Version: 1.4.1
14
+ Version: 1.4.2
15
15
  Author: PanGuoJun
16
16
  License: MIT
17
17
  """
@@ -387,7 +387,7 @@ __all__ = [
387
387
  'visualize_pipe_with_transformations',
388
388
  ]
389
389
 
390
- __version__ = "1.4.1"
390
+ __version__ = "1.4.2"
391
391
  __author__ = "PanGuoJun"
392
392
  __description__ = "Python Hypergraphics Library"
393
393
 
@@ -71,8 +71,8 @@ def world_to_local_pipe_str(world_pipe_str, start_c):
71
71
  'D': vec3(0, -1, 0) # Down (local Y-)
72
72
  }
73
73
 
74
- # Initialize local coordinate system
75
- cur_c = start_c.Q()
74
+ # Initialize local coordinate system (coord3, not quat)
75
+ cur_c = start_c
76
76
  local_pipe_str = ""
77
77
 
78
78
  for i, move in enumerate(world_pipe_str):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: phg_vis
3
- Version: 1.4.1
3
+ Version: 1.4.2
4
4
  Summary: A package for the PHG modeling language and 3D visualization tool.
5
5
  Home-page: https://github.com/panguojun/Coordinate-System
6
6
  Author: romeosoft
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='phg_vis',
5
- version='1.4.1',
5
+ version='1.4.2',
6
6
  packages=find_packages(),
7
7
  include_package_data=True,
8
8
  description='A package for the PHG modeling language and 3D visualization tool.',
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes