...
...
...
...
Name
function — Manipulate data with mathematical expression
...
No Format | ||||
---|---|---|---|---|
| ||||
function "x = x + 100 ; y = x + y"
|
...
No Format | ||||
---|---|---|---|---|
| ||||
function "z = if(z<0, 5, z)"
|
...
Common Function variables:
The following variables are available to all datasets:
x = the x value of the current point
y = the y value of the current point
z = the z value of the current point
...
No Format | ||||
---|---|---|---|---|
| ||||
function "x=y ; y=x"
|
Example 2: Multiply z by 1000 (Structured Points or Poly Data)
No Format | ||||
---|---|---|---|---|
| ||||
function "z=z*1000"
|
Example 3: Translate polydata 100 in x direction
No Format | ||||
---|---|---|---|---|
| ||||
function "x=x+100"
|
Example 4: Translate structured points dataset100 in x direction
No Format | ||||
---|---|---|---|---|
| ||||
function "origo_x=origo_x+100"
|
...
No Format | ||||
---|---|---|---|---|
| ||||
function "z=dy*sin(sqrt(x*x +y*y)/(dx*10))"
|
...