taichi_glsl
taichi_glsl copied to clipboard
A Taichi extension library providing a set of GLSL-alike helper functions
- My project can not compile if taichi>=0.8.6, error info is "Can only iterate through Taichi fields/snodes" - https://github.com/lyd405121/ti-raytrace - So I do some tests to understand that: ```python import...
``` [Taichi] version 0.8.12, llvm 10.0.0, commit 2cc32047, osx, python 3.8.2 [TaiGLSL] version 0.0.11 Traceback (most recent call last): File "demo-test.py", line 2, in from taichi_glsl import * File "/Users/puffy/Library/Python/3.8/lib/python/site-packages/taichi_glsl/__init__.py",...
Fix the ```ti.inside_kernel``` to fit Taichi AST refactor.
As in Scientific Visualization, 1D and 3D textures are often used, we need 1D and 3D linear interpolations. Thanks!
Hi, I'm the guy who posted [this](https://forum.taichi.graphics/t/how-to-dynamically-access-ti-ext-arr-with-taichi-class-ti-data-oriented-as-element/1226/4). I'm currently considering to refactor my [project](https://github.com/Jack12xl/a-toy-fluid-engine) to make it easier to extend. So I remembered in [that](https://forum.taichi.graphics/t/how-to-dynamically-access-ti-ext-arr-with-taichi-class-ti-data-oriented-as-element/1226/4) post you mentioned the [ts.TaichiClass](https://github.com/taichi-dev/taichi_glsl/blob/27cdcb15588fd4685b96f38f94e9136f7e1e1c10/taichi_glsl/odop.py#L13),...
Updating the examples using the Animation class instead.
In hack.py, the statement `_old_element_wise_binary = ti.Matrix._element_wise_binary` generates directly an AttributeError. steps to reproduce (python3.11) : 1) pip install taichi taichi_glsl in a file example.py: 2) `import taichi_glsl as ts`...