basilisk-engine 0.1.33__py3-none-any.whl → 0.1.34__py3-none-any.whl
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.
Potentially problematic release.
This version of basilisk-engine might be problematic. Click here for more details.
- basilisk/__init__.py +11 -1
- {basilisk_engine-0.1.33.dist-info → basilisk_engine-0.1.34.dist-info}/METADATA +1 -1
- {basilisk_engine-0.1.33.dist-info → basilisk_engine-0.1.34.dist-info}/RECORD +5 -5
- {basilisk_engine-0.1.33.dist-info → basilisk_engine-0.1.34.dist-info}/WHEEL +0 -0
- {basilisk_engine-0.1.33.dist-info → basilisk_engine-0.1.34.dist-info}/top_level.txt +0 -0
basilisk/__init__.py
CHANGED
|
@@ -13,4 +13,14 @@ from .render.sky import Sky
|
|
|
13
13
|
from .render.post_process import PostProcess
|
|
14
14
|
from .particles.particle_handler import ParticleHandler
|
|
15
15
|
from .render.framebuffer import Framebuffer
|
|
16
|
-
from .audio.sound import Sound
|
|
16
|
+
from .audio.sound import Sound
|
|
17
|
+
|
|
18
|
+
# expose internal algorithms
|
|
19
|
+
from .collisions.narrow.epa import get_epa_from_gjk
|
|
20
|
+
from .collisions.narrow.gjk import collide_gjk
|
|
21
|
+
from .collisions.narrow.graham_scan import graham_scan
|
|
22
|
+
from .collisions.narrow.helper import get_furthest_point, get_support_point
|
|
23
|
+
from .collisions.narrow.line_intersections import line_line_intersect, line_poly_intersect
|
|
24
|
+
from .collisions.narrow.sutherland_hodgman import sutherland_hodgman
|
|
25
|
+
from .generic.collisions import collide_aabb_aabb, collide_aabb_line
|
|
26
|
+
from .generic.meshes import moller_trumbore
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
basilisk/__init__.py,sha256=
|
|
1
|
+
basilisk/__init__.py,sha256=23OM1kiXMU44J2TVp66efVSrbQAeiuTDmcdhNAftFfY,1134
|
|
2
2
|
basilisk/config.py,sha256=FC0tTQy8jcSZSlriro1SFN2sLw-KLfYQM63Jq6YPHjk,109
|
|
3
3
|
basilisk/engine.py,sha256=1YERzyCkVJTgntZQPDbJ1_qy6CZEaov6Y9rojHpm_O0,5718
|
|
4
4
|
basilisk/scene.py,sha256=51nrk6pnorHQgyiY2veW90uXsPfdHQyDKbJNtXx44w4,12197
|
|
@@ -103,7 +103,7 @@ basilisk/shaders/particle.frag,sha256=JXhPDvgd7JDw0-PCZtCOjHTTw2DMeeSaBvTr5fHuIy
|
|
|
103
103
|
basilisk/shaders/particle.vert,sha256=bJv3hsWjWYb-g0mgdCV9eH-TVRwpCzhA3wsgSUI3WEM,2943
|
|
104
104
|
basilisk/shaders/sky.frag,sha256=KG8ablNdaJ5E2Gf1ZpfP3ih252fY8ZNjign_fwjN6V4,169
|
|
105
105
|
basilisk/shaders/sky.vert,sha256=oAnrknEgsd9MawE_zx8P0u9nUSFEBYBg5ykBmWpqZ_g,332
|
|
106
|
-
basilisk_engine-0.1.
|
|
107
|
-
basilisk_engine-0.1.
|
|
108
|
-
basilisk_engine-0.1.
|
|
109
|
-
basilisk_engine-0.1.
|
|
106
|
+
basilisk_engine-0.1.34.dist-info/METADATA,sha256=R7zkpwdUFr7pOPueDp5O227samhusB3Qic1MkKPyKc0,1261
|
|
107
|
+
basilisk_engine-0.1.34.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
108
|
+
basilisk_engine-0.1.34.dist-info/top_level.txt,sha256=enlSYSf7CUyAly1jmUCNNGInTbaFUjGk4SKwyckZQkw,9
|
|
109
|
+
basilisk_engine-0.1.34.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|