feat(scenegraph): add basic scene graph data structures

This commit is contained in:
2026-03-24 17:39:00 +08:00
parent 55750f1087
commit d2481684ac
6 changed files with 238 additions and 0 deletions

23
notebooks/verification.py Normal file
View File

@@ -0,0 +1,23 @@
import marimo
__generated_with = "0.21.1"
app = marimo.App()
@app.cell
def _():
import marimo as mo
from scenegraph import ObjectNode, RoomNode
return
@app.cell
def _():
return
if __name__ == "__main__":
app.run()