mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 03:20:18 +00:00
Update box2d.md
This commit is contained in:
parent
12f6617bee
commit
63fff364e3
@ -106,8 +106,16 @@ from linalg import vec2
|
||||
|
||||
world = box2d.World()
|
||||
|
||||
# body_a is a static body with a box shape at (1, 0)
|
||||
"""
|
||||
12/s
|
||||
B -----> A
|
||||
-|-|-|-|-|-|-|-|-|-
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
"""
|
||||
|
||||
# body_a is a static body with a box shape at (9, 0)
|
||||
body_a = box2d.Body(world)
|
||||
body_a.type = 0 # static type
|
||||
body_a.set_box_shape(0.5, 0.5)
|
||||
body_a.position = vec2(9, 0)
|
||||
|
||||
@ -121,12 +129,6 @@ class Node:
|
||||
def on_box2d_post_step(self):
|
||||
pass
|
||||
|
||||
"""
|
||||
B A
|
||||
-|-|-|-|-|-|-|-|-|-
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
"""
|
||||
|
||||
# body_b is a dynamic body with a circle shape at (0, 0)
|
||||
body_b = box2d.Body(world, Node())
|
||||
body_b.set_circle_shape(0.5)
|
||||
|
Loading…
x
Reference in New Issue
Block a user