Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions docs/lang/articles/math/math_module.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def test():
x = tm.sin(a) # [0.841471, 0.909297, 0.141120]
y = tm.floor(a) # [1.000000, 2.000000, 3.000000]
z = tm.degrees(a) # [57.295780, 114.591560, 171.887344]
b = ti.Vector([2.0, 3.0, 4.0])
b = ti.Vector([2.0, 3.0, 4.0]) # [2.000000, 3.000000, 4.000000]
w = tm.atan2(b, a) # [1.107149, 0.982794, 0.927295]
...
```
Expand Down Expand Up @@ -87,13 +87,13 @@ vec3 = ti.math.mat3
vec4 = ti.math.vec4

m = mat2(1) # [[1., 1.], [1., 1.]]
m = mat2(1, 2, 3, 4) # [[1., 2.], [3, 4.]]
m = mat2([1, 2], [3, 4]) # [[1., 2.], [3, 4.]]
m = mat2([1, 2, 3, 4]) # [[1., 2.], [3, 4.]]
v = vec3(1, 2, 3)
m = mat2(v, 4) # [[1., 2.], [3, 4.]]
u = vec4([1, 2], [3, 4])
u = vec4(v, 4.0)
m = mat2(1, 2, 3, 4) # [[1., 2.], [3., 4.]]
m = mat2([1, 2], [3, 4]) # [[1., 2.], [3., 4.]]
m = mat2([1, 2, 3, 4]) # [[1., 2.], [3., 4.]]
v = vec3(1, 2, 3) # [1., 2., 3.]
m = mat2(v, 4) # [[1., 2.], [3., 4.]]
u = vec4([1, 2], [3, 4]) # [1., 2., 3., 4.]
u = vec4(v, 4.0) # [1., 2., 3., 4.]
```

Another important feature of vector types created by `ti.types.vector()` is that they support **vector swizzling** just as GLSL vectors do. This means you can use `xyzw`, `rgba`, `stpq` to access their elements with indices ≤ four:
Expand Down
2 changes: 1 addition & 1 deletion tests/python/test_ipython.ipynb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"cells": [
"cells": [
{
"cell_type": "markdown",
"id": "51b3b00e",
Expand Down