From 881c5d91e3f4e1313e139079643771ae3078b781 Mon Sep 17 00:00:00 2001 From: Yuanming Hu Date: Fri, 29 Apr 2022 16:22:28 +0800 Subject: [PATCH] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index eaba3c8..99f5622 100644 --- a/README.md +++ b/README.md @@ -6,12 +6,12 @@ > Figure: result of `python3 example6.py`. Please replace the image above (`demo.jpg`) with yours, so that other people can immediately see your results :-) -We invite you to create your voxel artwork, by putting your code in `main.py`! +We invite you to create your voxel artwork, by putting your [Taichi](https://github.com/taichi-dev/taichi) code in `main.py`! Rules: + You can only import two modules: `taichi` (`pip` installation guide below) and `scene.py` (in the repo). -+ The code in `main.py` cannot exceed 99 lines, and each line cannot exceed 120 characters. ++ The code in `main.py` cannot exceed 99 lines. Each line cannot exceed 120 characters. The available APIs are: @@ -24,6 +24,8 @@ The available APIs are: Remember to call `scene.finish()` at last. +**Taichi lang documentation:** https://docs.taichi.graphics/ + **Modifying files other than `main.py` is not allowed.** @@ -41,7 +43,7 @@ Assume you have a Python 3 environment, simply run: pip3 install -r requirements.txt ``` -to install the dependendies of the voxel renderer. +to install the dependencies of the voxel renderer. ## Quickstart