murali-engine 0.3.0__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.
- murali_engine-0.3.0/.gitignore +20 -0
- murali_engine-0.3.0/CHANGELOG.md +166 -0
- murali_engine-0.3.0/Cargo.lock +6347 -0
- murali_engine-0.3.0/Cargo.toml +85 -0
- murali_engine-0.3.0/LICENSE-APACHE +202 -0
- murali_engine-0.3.0/LICENSE-MIT +21 -0
- murali_engine-0.3.0/PKG-INFO +231 -0
- murali_engine-0.3.0/README.md +201 -0
- murali_engine-0.3.0/ROADMAP.md +113 -0
- murali_engine-0.3.0/assets/code_themes/murali_dark.tmTheme +85 -0
- murali_engine-0.3.0/assets/code_themes/murali_light.tmTheme +85 -0
- murali_engine-0.3.0/assets/fonts/README.md +13 -0
- murali_engine-0.3.0/assets/props/demo-apple/demo-apple.bin +0 -0
- murali_engine-0.3.0/assets/props/demo-apple/demo-apple.gltf +222 -0
- murali_engine-0.3.0/assets/props/demo-pyramid.glb +0 -0
- murali_engine-0.3.0/assets/textures/kavriq-black-marble-texture.png +0 -0
- murali_engine-0.3.0/assets/textures/kavriq-white-marble-texture.png +0 -0
- murali_engine-0.3.0/murali.toml.example +9 -0
- murali_engine-0.3.0/pyproject.toml +37 -0
- murali_engine-0.3.0/python/examples/hello_shapes.py +33 -0
- murali_engine-0.3.0/python/tests/test_bindings.py +552 -0
- murali_engine-0.3.0/resources/animation_showcase.png +0 -0
- murali_engine-0.3.0/resources/murali_default_logo.png +0 -0
- murali_engine-0.3.0/resources/shapes.png +0 -0
- murali_engine-0.3.0/src/backend/ecs/components.rs +55 -0
- murali_engine-0.3.0/src/backend/ecs/mod.rs +1 -0
- murali_engine-0.3.0/src/backend/mod.rs +53 -0
- murali_engine-0.3.0/src/backend/renderer/device.rs +217 -0
- murali_engine-0.3.0/src/backend/renderer/exporter.rs +0 -0
- murali_engine-0.3.0/src/backend/renderer/mesh/latex_quad.rs +63 -0
- murali_engine-0.3.0/src/backend/renderer/mesh/mod.rs +116 -0
- murali_engine-0.3.0/src/backend/renderer/mesh/typst_quad.rs +45 -0
- murali_engine-0.3.0/src/backend/renderer/mod.rs +11 -0
- murali_engine-0.3.0/src/backend/renderer/renderer.rs +1686 -0
- murali_engine-0.3.0/src/backend/renderer/shaders/line.wgsl +79 -0
- murali_engine-0.3.0/src/backend/renderer/shaders/mesh.wgsl +30 -0
- murali_engine-0.3.0/src/backend/renderer/shaders/scene_view.wgsl +74 -0
- murali_engine-0.3.0/src/backend/renderer/shaders/text.wgsl +40 -0
- murali_engine-0.3.0/src/backend/renderer/vertex/color.rs +16 -0
- murali_engine-0.3.0/src/backend/renderer/vertex/line.rs +26 -0
- murali_engine-0.3.0/src/backend/renderer/vertex/mesh.rs +21 -0
- murali_engine-0.3.0/src/backend/renderer/vertex/mod.rs +4 -0
- murali_engine-0.3.0/src/backend/renderer/vertex/text.rs +25 -0
- murali_engine-0.3.0/src/backend/sync.rs +687 -0
- murali_engine-0.3.0/src/colors/mod.rs +268 -0
- murali_engine-0.3.0/src/colors/semantic.rs +68 -0
- murali_engine-0.3.0/src/defaults/dark.toml +12 -0
- murali_engine-0.3.0/src/defaults/light.toml +12 -0
- murali_engine-0.3.0/src/engine/app.rs +394 -0
- murali_engine-0.3.0/src/engine/camera/controller/mod.rs +53 -0
- murali_engine-0.3.0/src/engine/camera/controller/orbit.rs +87 -0
- murali_engine-0.3.0/src/engine/camera/controller/pan_zoom.rs +56 -0
- murali_engine-0.3.0/src/engine/camera/mod.rs +325 -0
- murali_engine-0.3.0/src/engine/config/export_config.rs +68 -0
- murali_engine-0.3.0/src/engine/config/mod.rs +103 -0
- murali_engine-0.3.0/src/engine/config/preview_config.rs +56 -0
- murali_engine-0.3.0/src/engine/doctor.rs +91 -0
- murali_engine-0.3.0/src/engine/export.rs +816 -0
- murali_engine-0.3.0/src/engine/frame.rs +68 -0
- murali_engine-0.3.0/src/engine/mod.rs +306 -0
- murali_engine-0.3.0/src/engine/render.rs +24 -0
- murali_engine-0.3.0/src/engine/scene.rs +968 -0
- murali_engine-0.3.0/src/engine/scene_view.rs +322 -0
- murali_engine-0.3.0/src/engine/timeline.rs +1644 -0
- murali_engine-0.3.0/src/frontend/animation/builder.rs +692 -0
- murali_engine-0.3.0/src/frontend/animation/camera_animation.rs +180 -0
- murali_engine-0.3.0/src/frontend/animation/camera_animation_builder.rs +112 -0
- murali_engine-0.3.0/src/frontend/animation/indicate.rs +7 -0
- murali_engine-0.3.0/src/frontend/animation/mod.rs +3633 -0
- murali_engine-0.3.0/src/frontend/collection/README.md +57 -0
- murali_engine-0.3.0/src/frontend/collection/ai/README.md +27 -0
- murali_engine-0.3.0/src/frontend/collection/ai/deep_learning/README.md +17 -0
- murali_engine-0.3.0/src/frontend/collection/ai/deep_learning/mod.rs +17 -0
- murali_engine-0.3.0/src/frontend/collection/ai/deep_learning/neural_network_diagram.rs +514 -0
- murali_engine-0.3.0/src/frontend/collection/ai/ml_components/README.md +16 -0
- murali_engine-0.3.0/src/frontend/collection/ai/ml_components/mod.rs +14 -0
- murali_engine-0.3.0/src/frontend/collection/ai/ml_components/signal_flow.rs +221 -0
- murali_engine-0.3.0/src/frontend/collection/ai/mod.rs +30 -0
- murali_engine-0.3.0/src/frontend/collection/ai/murali_ai_indicator.rs +417 -0
- murali_engine-0.3.0/src/frontend/collection/ai/systems_agentic_ai/README.md +18 -0
- murali_engine-0.3.0/src/frontend/collection/ai/systems_agentic_ai/agentic_flow_chart/README.md +300 -0
- murali_engine-0.3.0/src/frontend/collection/ai/systems_agentic_ai/agentic_flow_chart/animation.rs +285 -0
- murali_engine-0.3.0/src/frontend/collection/ai/systems_agentic_ai/agentic_flow_chart/chart.rs +739 -0
- murali_engine-0.3.0/src/frontend/collection/ai/systems_agentic_ai/agentic_flow_chart/edge.rs +41 -0
- murali_engine-0.3.0/src/frontend/collection/ai/systems_agentic_ai/agentic_flow_chart/layout.rs +175 -0
- murali_engine-0.3.0/src/frontend/collection/ai/systems_agentic_ai/agentic_flow_chart/mod.rs +27 -0
- murali_engine-0.3.0/src/frontend/collection/ai/systems_agentic_ai/agentic_flow_chart/model.rs +235 -0
- murali_engine-0.3.0/src/frontend/collection/ai/systems_agentic_ai/agentic_flow_chart/node.rs +139 -0
- murali_engine-0.3.0/src/frontend/collection/ai/systems_agentic_ai/agentic_flow_chart/renderer.rs +777 -0
- murali_engine-0.3.0/src/frontend/collection/ai/systems_agentic_ai/agentic_flow_chart/routing.rs +459 -0
- murali_engine-0.3.0/src/frontend/collection/ai/systems_agentic_ai/agentic_flow_chart/shapes.rs +157 -0
- murali_engine-0.3.0/src/frontend/collection/ai/systems_agentic_ai/agentic_flow_chart/types.rs +69 -0
- murali_engine-0.3.0/src/frontend/collection/ai/systems_agentic_ai/mod.rs +14 -0
- murali_engine-0.3.0/src/frontend/collection/ai/templates.rs +43 -0
- murali_engine-0.3.0/src/frontend/collection/ai/transformers_llms/README.md +20 -0
- murali_engine-0.3.0/src/frontend/collection/ai/transformers_llms/attention_matrix.rs +136 -0
- murali_engine-0.3.0/src/frontend/collection/ai/transformers_llms/context_window.rs +542 -0
- murali_engine-0.3.0/src/frontend/collection/ai/transformers_llms/kv_cache.rs +524 -0
- murali_engine-0.3.0/src/frontend/collection/ai/transformers_llms/mod.rs +28 -0
- murali_engine-0.3.0/src/frontend/collection/ai/transformers_llms/token_sequence.rs +279 -0
- murali_engine-0.3.0/src/frontend/collection/ai/transformers_llms/trace.rs +476 -0
- murali_engine-0.3.0/src/frontend/collection/ai/transformers_llms/transformer_block_diagram.rs +725 -0
- murali_engine-0.3.0/src/frontend/collection/common/README.md +20 -0
- murali_engine-0.3.0/src/frontend/collection/common/mod.rs +13 -0
- murali_engine-0.3.0/src/frontend/collection/common/tensor.rs +1366 -0
- murali_engine-0.3.0/src/frontend/collection/common/tensor_ops.rs +1553 -0
- murali_engine-0.3.0/src/frontend/collection/composite/axes.rs +133 -0
- murali_engine-0.3.0/src/frontend/collection/composite/axes3d.rs +189 -0
- murali_engine-0.3.0/src/frontend/collection/composite/beta/chat_input.rs +189 -0
- murali_engine-0.3.0/src/frontend/collection/composite/beta/mod.rs +7 -0
- murali_engine-0.3.0/src/frontend/collection/composite/beta/opening.rs +723 -0
- murali_engine-0.3.0/src/frontend/collection/composite/card.rs +89 -0
- murali_engine-0.3.0/src/frontend/collection/composite/logo.rs +425 -0
- murali_engine-0.3.0/src/frontend/collection/composite/mod.rs +12 -0
- murali_engine-0.3.0/src/frontend/collection/composite/number_plane.rs +100 -0
- murali_engine-0.3.0/src/frontend/collection/layout/group.rs +67 -0
- murali_engine-0.3.0/src/frontend/collection/layout/mod.rs +5 -0
- murali_engine-0.3.0/src/frontend/collection/layout/stack.rs +63 -0
- murali_engine-0.3.0/src/frontend/collection/maths/README.md +31 -0
- murali_engine-0.3.0/src/frontend/collection/maths/basic_math/README.md +16 -0
- murali_engine-0.3.0/src/frontend/collection/maths/basic_math/mod.rs +20 -0
- murali_engine-0.3.0/src/frontend/collection/maths/basic_math/number_line.rs +133 -0
- murali_engine-0.3.0/src/frontend/collection/maths/calculus/README.md +17 -0
- murali_engine-0.3.0/src/frontend/collection/maths/calculus/function_graph.rs +79 -0
- murali_engine-0.3.0/src/frontend/collection/maths/calculus/mod.rs +19 -0
- murali_engine-0.3.0/src/frontend/collection/maths/calculus/parametric_curve.rs +75 -0
- murali_engine-0.3.0/src/frontend/collection/maths/calculus/parametric_curve3d.rs +82 -0
- murali_engine-0.3.0/src/frontend/collection/maths/calculus/parametric_surface.rs +523 -0
- murali_engine-0.3.0/src/frontend/collection/maths/calculus/stream_lines.rs +421 -0
- murali_engine-0.3.0/src/frontend/collection/maths/calculus/vector_field.rs +220 -0
- murali_engine-0.3.0/src/frontend/collection/maths/data_geometry/README.md +16 -0
- murali_engine-0.3.0/src/frontend/collection/maths/data_geometry/mod.rs +17 -0
- murali_engine-0.3.0/src/frontend/collection/maths/data_geometry/scatter_plot.rs +62 -0
- murali_engine-0.3.0/src/frontend/collection/maths/graph/README.md +7 -0
- murali_engine-0.3.0/src/frontend/collection/maths/graph/legend.rs +117 -0
- murali_engine-0.3.0/src/frontend/collection/maths/graph/mod.rs +5 -0
- murali_engine-0.3.0/src/frontend/collection/maths/information_theory/README.md +17 -0
- murali_engine-0.3.0/src/frontend/collection/maths/information_theory/entropy.rs +139 -0
- murali_engine-0.3.0/src/frontend/collection/maths/information_theory/mod.rs +16 -0
- murali_engine-0.3.0/src/frontend/collection/maths/linear_algebra/README.md +32 -0
- murali_engine-0.3.0/src/frontend/collection/maths/linear_algebra/angle.rs +217 -0
- murali_engine-0.3.0/src/frontend/collection/maths/linear_algebra/badge.rs +175 -0
- murali_engine-0.3.0/src/frontend/collection/maths/linear_algebra/basis.rs +366 -0
- murali_engine-0.3.0/src/frontend/collection/maths/linear_algebra/composition.rs +510 -0
- murali_engine-0.3.0/src/frontend/collection/maths/linear_algebra/coordinate.rs +143 -0
- murali_engine-0.3.0/src/frontend/collection/maths/linear_algebra/meter.rs +134 -0
- murali_engine-0.3.0/src/frontend/collection/maths/linear_algebra/mod.rs +248 -0
- murali_engine-0.3.0/src/frontend/collection/maths/linear_algebra/projection.rs +108 -0
- murali_engine-0.3.0/src/frontend/collection/maths/linear_algebra/transform.rs +778 -0
- murali_engine-0.3.0/src/frontend/collection/maths/linear_algebra/vector.rs +251 -0
- murali_engine-0.3.0/src/frontend/collection/maths/mod.rs +31 -0
- murali_engine-0.3.0/src/frontend/collection/maths/notation/README.md +15 -0
- murali_engine-0.3.0/src/frontend/collection/maths/notation/equation.rs +356 -0
- murali_engine-0.3.0/src/frontend/collection/maths/notation/matrix.rs +277 -0
- murali_engine-0.3.0/src/frontend/collection/maths/notation/mod.rs +8 -0
- murali_engine-0.3.0/src/frontend/collection/maths/optimization/README.md +18 -0
- murali_engine-0.3.0/src/frontend/collection/maths/optimization/mod.rs +14 -0
- murali_engine-0.3.0/src/frontend/collection/maths/optimization/path.rs +129 -0
- murali_engine-0.3.0/src/frontend/collection/maths/probability/README.md +15 -0
- murali_engine-0.3.0/src/frontend/collection/maths/probability/mod.rs +12 -0
- murali_engine-0.3.0/src/frontend/collection/maths/probability/next_token_distribution.rs +692 -0
- murali_engine-0.3.0/src/frontend/collection/maths/statistics/README.md +17 -0
- murali_engine-0.3.0/src/frontend/collection/maths/statistics/decision_boundary_plot.rs +266 -0
- murali_engine-0.3.0/src/frontend/collection/maths/statistics/mod.rs +14 -0
- murali_engine-0.3.0/src/frontend/collection/maths/statistics/normalization_view.rs +499 -0
- murali_engine-0.3.0/src/frontend/collection/mod.rs +26 -0
- murali_engine-0.3.0/src/frontend/collection/primitives/arrow.rs +175 -0
- murali_engine-0.3.0/src/frontend/collection/primitives/chat_bubble.rs +232 -0
- murali_engine-0.3.0/src/frontend/collection/primitives/circle.rs +82 -0
- murali_engine-0.3.0/src/frontend/collection/primitives/cube.rs +41 -0
- murali_engine-0.3.0/src/frontend/collection/primitives/ellipse.rs +83 -0
- murali_engine-0.3.0/src/frontend/collection/primitives/line.rs +82 -0
- murali_engine-0.3.0/src/frontend/collection/primitives/mod.rs +33 -0
- murali_engine-0.3.0/src/frontend/collection/primitives/noisy_circle.rs +330 -0
- murali_engine-0.3.0/src/frontend/collection/primitives/noisy_horizon.rs +659 -0
- murali_engine-0.3.0/src/frontend/collection/primitives/particle_belt.rs +243 -0
- murali_engine-0.3.0/src/frontend/collection/primitives/path.rs +924 -0
- murali_engine-0.3.0/src/frontend/collection/primitives/polygon.rs +88 -0
- murali_engine-0.3.0/src/frontend/collection/primitives/prop3d.rs +424 -0
- murali_engine-0.3.0/src/frontend/collection/primitives/rectangle.rs +74 -0
- murali_engine-0.3.0/src/frontend/collection/primitives/rounded_rectangle.rs +118 -0
- murali_engine-0.3.0/src/frontend/collection/primitives/square.rs +81 -0
- murali_engine-0.3.0/src/frontend/collection/primitives/to_path.rs +172 -0
- murali_engine-0.3.0/src/frontend/collection/storytelling/mod.rs +3 -0
- murali_engine-0.3.0/src/frontend/collection/storytelling/stepwise/layout.rs +75 -0
- murali_engine-0.3.0/src/frontend/collection/storytelling/stepwise/mod.rs +19 -0
- murali_engine-0.3.0/src/frontend/collection/storytelling/stepwise/model.rs +99 -0
- murali_engine-0.3.0/src/frontend/collection/storytelling/stepwise/script.rs +333 -0
- murali_engine-0.3.0/src/frontend/collection/storytelling/stepwise/state.rs +21 -0
- murali_engine-0.3.0/src/frontend/collection/storytelling/stepwise/tattva.rs +868 -0
- murali_engine-0.3.0/src/frontend/collection/storytelling/stepwise/timeline.rs +80 -0
- murali_engine-0.3.0/src/frontend/collection/table/mod.rs +3 -0
- murali_engine-0.3.0/src/frontend/collection/table/table.rs +616 -0
- murali_engine-0.3.0/src/frontend/collection/text/code_block.rs +443 -0
- murali_engine-0.3.0/src/frontend/collection/text/label.rs +135 -0
- murali_engine-0.3.0/src/frontend/collection/text/latex.rs +118 -0
- murali_engine-0.3.0/src/frontend/collection/text/letter3d.rs +813 -0
- murali_engine-0.3.0/src/frontend/collection/text/mod.rs +11 -0
- murali_engine-0.3.0/src/frontend/collection/text/typst.rs +59 -0
- murali_engine-0.3.0/src/frontend/collection/utility/mod.rs +3 -0
- murali_engine-0.3.0/src/frontend/collection/utility/traced_path.rs +224 -0
- murali_engine-0.3.0/src/frontend/layout.rs +153 -0
- murali_engine-0.3.0/src/frontend/mod.rs +121 -0
- murali_engine-0.3.0/src/frontend/props.rs +139 -0
- murali_engine-0.3.0/src/frontend/style.rs +45 -0
- murali_engine-0.3.0/src/frontend/tattva_trait.rs +82 -0
- murali_engine-0.3.0/src/frontend/theme.rs +218 -0
- murali_engine-0.3.0/src/frontend/updater.rs +122 -0
- murali_engine-0.3.0/src/lib.rs +31 -0
- murali_engine-0.3.0/src/math/bezier.rs +18 -0
- murali_engine-0.3.0/src/math/interpolation.rs +24 -0
- murali_engine-0.3.0/src/math/map_projection.rs +175 -0
- murali_engine-0.3.0/src/math/mod.rs +4 -0
- murali_engine-0.3.0/src/math/transform.rs +30 -0
- murali_engine-0.3.0/src/palette.rs +259 -0
- murali_engine-0.3.0/src/positions.rs +9 -0
- murali_engine-0.3.0/src/prelude.rs +48 -0
- murali_engine-0.3.0/src/projection/context.rs +116 -0
- murali_engine-0.3.0/src/projection/mesh.rs +578 -0
- murali_engine-0.3.0/src/projection/mod.rs +12 -0
- murali_engine-0.3.0/src/projection/primitives.rs +295 -0
- murali_engine-0.3.0/src/projection/style.rs +89 -0
- murali_engine-0.3.0/src/python/ai.rs +217 -0
- murali_engine-0.3.0/src/python/axes_table.rs +209 -0
- murali_engine-0.3.0/src/python/math.rs +303 -0
- murali_engine-0.3.0/src/python/mod.rs +12 -0
- murali_engine-0.3.0/src/python/module.rs +44 -0
- murali_engine-0.3.0/src/python/scene.rs +841 -0
- murali_engine-0.3.0/src/python/shapes.rs +795 -0
- murali_engine-0.3.0/src/python/support.rs +492 -0
- murali_engine-0.3.0/src/python/text.rs +429 -0
- murali_engine-0.3.0/src/python/three_d.rs +395 -0
- murali_engine-0.3.0/src/python/timeline.rs +543 -0
- murali_engine-0.3.0/src/resource/assets/earthmap1k.jpg +0 -0
- murali_engine-0.3.0/src/resource/assets/fonts/Inter-Regular.ttf +0 -0
- murali_engine-0.3.0/src/resource/assets/mod.rs +0 -0
- murali_engine-0.3.0/src/resource/latex_resource/backend.rs +145 -0
- murali_engine-0.3.0/src/resource/latex_resource/error.rs +21 -0
- murali_engine-0.3.0/src/resource/latex_resource/mod.rs +32 -0
- murali_engine-0.3.0/src/resource/latex_resource/raster.rs +249 -0
- murali_engine-0.3.0/src/resource/latex_resource/template.rs +15 -0
- murali_engine-0.3.0/src/resource/mod.rs +4 -0
- murali_engine-0.3.0/src/resource/text/atlas.rs +115 -0
- murali_engine-0.3.0/src/resource/text/font.rs +97 -0
- murali_engine-0.3.0/src/resource/text/layout.rs +108 -0
- murali_engine-0.3.0/src/resource/text/manager.rs +101 -0
- murali_engine-0.3.0/src/resource/text/mesh.rs +72 -0
- murali_engine-0.3.0/src/resource/text/mod.rs +9 -0
- murali_engine-0.3.0/src/resource/texture.rs +108 -0
- murali_engine-0.3.0/src/resource/typst_resource/cache.rs +43 -0
- murali_engine-0.3.0/src/resource/typst_resource/compiler.rs +78 -0
- murali_engine-0.3.0/src/resource/typst_resource/mod.rs +7 -0
- murali_engine-0.3.0/src/resource/typst_resource/outline.rs +166 -0
- murali_engine-0.3.0/src/resource/typst_resource/raster.rs +262 -0
- murali_engine-0.3.0/src/resource/typst_resource/vector.rs +182 -0
- murali_engine-0.3.0/src/utils/mod.rs +1 -0
- murali_engine-0.3.0/src/utils/project.rs +14 -0
- murali_engine-0.3.0/src/validation.rs +148 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/target
|
|
2
|
+
/.venv
|
|
3
|
+
__pycache__/
|
|
4
|
+
*.py[cod]
|
|
5
|
+
/rendered_output
|
|
6
|
+
/local-resources
|
|
7
|
+
|
|
8
|
+
# Docusaurus
|
|
9
|
+
docs/node_modules
|
|
10
|
+
docs/.docusaurus
|
|
11
|
+
docs/build
|
|
12
|
+
murali.toml
|
|
13
|
+
|
|
14
|
+
# Brand fonts with licenses that do not permit repository redistribution.
|
|
15
|
+
/assets/fonts/private/*
|
|
16
|
+
|
|
17
|
+
.windsurf
|
|
18
|
+
.vscode
|
|
19
|
+
|
|
20
|
+
**/.DS_Store
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to Murali are recorded here.
|
|
4
|
+
|
|
5
|
+
## Unreleased
|
|
6
|
+
|
|
7
|
+
## 0.3.0 - 2026-08-30
|
|
8
|
+
|
|
9
|
+
Python is now the public scene-authoring surface. Rust remains the engine. These APIs are
|
|
10
|
+
unstable until 0.5.0. Rust scene authoring stays on the `0.2.4` crate.
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- GitHub Actions builds `murali-engine` wheels for macOS arm64 and x86_64, Linux x86_64 and
|
|
15
|
+
aarch64, and Windows x86_64, plus a source distribution. A `v*` tag publishes them to PyPI.
|
|
16
|
+
- `Scene.preview(auto_close=..., hold=...)` so catalog runs can close after the timeline ends.
|
|
17
|
+
- Kit-owned named colors, themes, and teaching views. Engine constructors take RGBA tuples.
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Engine `with_*` methods return `self` for Python chaining.
|
|
22
|
+
- Public docs are one Murali guide (Start, Write scenes, Teaching views, Reference, Internals).
|
|
23
|
+
- Named colors are no longer engine Python exports.
|
|
24
|
+
|
|
25
|
+
## 0.2.5 - 2026-08-29
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
|
|
29
|
+
- Published the first experimental Python engine package as `murali-engine`, imported as
|
|
30
|
+
`murali_engine`.
|
|
31
|
+
- Added Python bindings for core scene authoring, timelines, shapes, text, tables, axes, selected
|
|
32
|
+
3D surfaces, SceneView, preview, and PNG export.
|
|
33
|
+
- Added Python smoke examples and binding tests for the new package surface.
|
|
34
|
+
|
|
35
|
+
### Changed
|
|
36
|
+
|
|
37
|
+
- Clarified the package boundary between Murali Engine, Murali Kit, and future add-on packages.
|
|
38
|
+
- Updated installation and Python binding docs for the `0.2.5` release.
|
|
39
|
+
|
|
40
|
+
## 0.2.4 - 2026-08-22
|
|
41
|
+
|
|
42
|
+
### Changed
|
|
43
|
+
|
|
44
|
+
- Renamed the public reusable-component namespace from `sangrah` back to `collection`.
|
|
45
|
+
- Renamed the math umbrella from `ganit` to `maths`, so math-facing components now live under
|
|
46
|
+
paths such as `murali::collection::maths::linear_algebra`.
|
|
47
|
+
- Updated examples, documentation, and internal module paths to use the commercial-facing
|
|
48
|
+
`collection` and `maths` names.
|
|
49
|
+
|
|
50
|
+
## 0.2.2 - 2026-08-22
|
|
51
|
+
|
|
52
|
+
### Added
|
|
53
|
+
|
|
54
|
+
- Experimental `math::linear_algebra` collection behind the `experimental` Cargo feature, including
|
|
55
|
+
reusable 2D vector, basis, grid transform, matrix-vector flow, determinant, dot product,
|
|
56
|
+
projection, orthogonality, dimension badge, and composition helpers.
|
|
57
|
+
- Linear algebra reference examples covering vectors, span, dot product, basis change, matrix
|
|
58
|
+
transforms, matrix-vector flow, column combinations, determinants, composition order, and a
|
|
59
|
+
SceneView-based transform-order comparison.
|
|
60
|
+
- Experimental feature documentation and example listings for opt-in linear algebra APIs.
|
|
61
|
+
|
|
62
|
+
### Changed
|
|
63
|
+
|
|
64
|
+
- `preview_all.sh` and `export_all.sh` can select examples by tags/ranges and automatically enable
|
|
65
|
+
the `experimental` feature for tagged linear algebra examples.
|
|
66
|
+
|
|
67
|
+
## 0.2.1 - 2026-08-22
|
|
68
|
+
|
|
69
|
+
### Added
|
|
70
|
+
|
|
71
|
+
- `SceneView`, an independently timed child scene that renders as one transformable parent object
|
|
72
|
+
with playback modes, backgrounds, borders, rounded corners, and configurable resolution.
|
|
73
|
+
- A `scene_view` reference example and dedicated guide covering child-scene construction, local
|
|
74
|
+
time mapping, playback lifecycle, parent animation, and current compositing limits.
|
|
75
|
+
- `Letter3D` support for extruded ASCII capitals with hole-aware font tessellation, independent
|
|
76
|
+
face colors, custom font loading, and image textures.
|
|
77
|
+
- `LetterParticles3D` and seekable scatter animations for deterministic glyph-to-particle
|
|
78
|
+
transitions, including configurable destination palettes.
|
|
79
|
+
- The beta `composite::beta::opening::Opening` temporal composite for configurable 3D title drops,
|
|
80
|
+
shake-and-burst choreography, particle dissolves, and tagline reveals.
|
|
81
|
+
- A `kavriq_opening` example that customizes the beta opening through Rust constants and exports
|
|
82
|
+
it directly as a standalone scene.
|
|
83
|
+
- An `opening_scene_view` example that keeps the opening on an independent perspective child scene
|
|
84
|
+
and fades it into continuing orthographic parent content.
|
|
85
|
+
- `ChatBubble`, a single-outline message-bubble primitive with configurable left or right tips, and
|
|
86
|
+
the beta `ChatInputBox` composite with typewriter-ready text and an optional send button.
|
|
87
|
+
- `Prop3D` support for static local `.glb` and `.gltf` assets, including scene transforms,
|
|
88
|
+
base-color materials and textures, local-space bounds, checked-in demo props, and reference
|
|
89
|
+
examples for both formats.
|
|
90
|
+
- A `model_inspector` utility example with automatic centering and framing, continuous rotation,
|
|
91
|
+
orbit and zoom controls, camera and fit options, and repository shorthand for bundled demo props.
|
|
92
|
+
- `TextureImage::builtin` and `BuiltinTexture::{BlackMarble, WhiteMarble}` for path-free access to
|
|
93
|
+
Murali's embedded marble textures. `Letter3D` and the beta opening composite accept these reusable
|
|
94
|
+
in-memory textures.
|
|
95
|
+
- `ContextWindow`, a role-aware semantic view of assembled model context with token budgets and
|
|
96
|
+
explicit per-block truncation.
|
|
97
|
+
- `NextTokenDistribution`, a deterministic next-token teaching view with temperature, top-k, top-p,
|
|
98
|
+
renormalization, and authored unit-interval sampling.
|
|
99
|
+
- `KvCacheView` for key/value cache occupancy backed by semantic tensors, plus the seekable
|
|
100
|
+
`kv_cache_fill_to` timeline animation.
|
|
101
|
+
- `TensorSnapshot::try_normalized` with LayerNorm and RMSNorm operations, and `NormalizationView`
|
|
102
|
+
for visualizing their input, output, and per-group statistics.
|
|
103
|
+
- Runnable examples and Docusaurus guides for the new conversational, 3D prop, opening, SceneView,
|
|
104
|
+
and semantic AI APIs.
|
|
105
|
+
|
|
106
|
+
### Fixed
|
|
107
|
+
|
|
108
|
+
- Orbit camera controls now synchronize with the authored camera before interaction, preventing a
|
|
109
|
+
jump on the first drag and keeping scroll zoom centered on the current target.
|
|
110
|
+
|
|
111
|
+
## 0.2.0 - 2026-08-09
|
|
112
|
+
|
|
113
|
+
### Added
|
|
114
|
+
|
|
115
|
+
- First-class `Frame::portrait()` support for intentionally composed 9:16 Shorts and vertical
|
|
116
|
+
videos, including matching preview windows, layout bounds, camera projection, and exports.
|
|
117
|
+
- `Frame::square()` support for square compositions, while retaining `Frame::landscape()` as the
|
|
118
|
+
default 16:9 frame.
|
|
119
|
+
- A runnable `portrait_video` reference example for 1080x1920 output.
|
|
120
|
+
|
|
121
|
+
### Changed
|
|
122
|
+
|
|
123
|
+
- The scene frame is now the single source of truth for aspect ratio. Export configuration accepts
|
|
124
|
+
a literal pixel `width`, and Murali derives output height from the selected frame.
|
|
125
|
+
- `ExportSettings::height` and `RenderOptions::resolution` were replaced by frame-derived height
|
|
126
|
+
and `RenderOptions::width`, respectively.
|
|
127
|
+
|
|
128
|
+
## 0.1.8 - 2026-08-09
|
|
129
|
+
|
|
130
|
+
### Fixed
|
|
131
|
+
|
|
132
|
+
- Restored the intended `MIT OR Apache-2.0` dual-license declaration and included both canonical
|
|
133
|
+
license texts in the repository and published package.
|
|
134
|
+
- Corrected the documentation release metadata so `0.1.8` is the explicit stable version across
|
|
135
|
+
the version selector, installation snippets, and frozen documentation.
|
|
136
|
+
- Added a CI release-metadata check to keep crate, lockfile, documentation, and license signals in
|
|
137
|
+
sync.
|
|
138
|
+
|
|
139
|
+
## 0.1.7 - 2026-08-09
|
|
140
|
+
|
|
141
|
+
### Added
|
|
142
|
+
|
|
143
|
+
- Local-time `Clip` composition onto one deterministic global timeline.
|
|
144
|
+
- Stable authored render layers, improved opaque and transparent 3D depth behavior, and exact
|
|
145
|
+
terminal export sampling.
|
|
146
|
+
- Deterministic backward seeking with explicit behavior for reversible callbacks, one-shot
|
|
147
|
+
callbacks, updaters, and traced paths.
|
|
148
|
+
- Semantic tensor snapshots, selectors, transitions, matrix operations, reshaping, split/merge,
|
|
149
|
+
broadcasting, deterministic sampling, higher-rank slicing, and explicit rank-2 projections.
|
|
150
|
+
- Versioned JSON AI trace ingestion with tokens, tensors, model metadata, and typed events.
|
|
151
|
+
- Semantic transformer stages and a JSON-backed end-to-end self-attention lesson.
|
|
152
|
+
- Centralized validation for timelines, streamlines, and parametric surfaces.
|
|
153
|
+
- Rust CI, expanded regression tests, and automatic preview closing for example sweeps.
|
|
154
|
+
|
|
155
|
+
### Fixed
|
|
156
|
+
|
|
157
|
+
- Stale geometry after normal mutable scene access and incorrect replacement tattva identity.
|
|
158
|
+
- Silent renderer truncation above 1,000 meshes and mesh indices limited to `u16`.
|
|
159
|
+
- Layout bounds for rotation, signed scale, moving transforms, and perspective cameras.
|
|
160
|
+
- Typst resize-cache keys, textured-surface wireframe visibility, deterministic contour extraction,
|
|
161
|
+
capture ordering, neural-network route activation, and several timeline boundary behaviors.
|
|
162
|
+
|
|
163
|
+
### Changed
|
|
164
|
+
|
|
165
|
+
- Upgraded the rendering and supporting dependency stack.
|
|
166
|
+
- Declared the package metadata as Apache-2.0 to match the repository's existing license file.
|