mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-17 14:18:13 +01:00
45 lines
1.0 KiB
Markdown
45 lines
1.0 KiB
Markdown
# ptf_y_twist
|
|
|
|
Twist a point along the y-axis. You can use it to create something such as a [twisted maze](https://github.com/JustinSDK/dotSCAD/blob/master/examples/maze/twisted_maze.scad).
|
|
|
|
![ptf_y_twist](images/lib3x-ptf_y_twist-2.JPG)
|
|
|
|
**Since:** 2.3
|
|
|
|
## Parameters
|
|
|
|
- `size` : 2 value array `[x, y]`, rectangle with dimensions `x` and `y`.
|
|
- `point` : The point to be twisted.
|
|
- `angle` : The number of degrees.
|
|
|
|
## Examples
|
|
|
|
use <polyline_join.scad>
|
|
use <ptf/ptf_y_twist.scad>
|
|
|
|
size = [10, 20];
|
|
|
|
rows = [
|
|
for(y = [0:size.y])
|
|
[for(x = [0:size.x]) [x, y]]
|
|
];
|
|
|
|
columns = [
|
|
for(x = [0:size.x])
|
|
[for(y = [0:size.y]) [x, y]]
|
|
];
|
|
|
|
for(line = rows) {
|
|
twisted = [for(p = line) ptf_y_twist(size, p, 90)];
|
|
polyline_join(twisted)
|
|
sphere(.05);
|
|
}
|
|
|
|
for(line = columns) {
|
|
twisted = [for(p = line) ptf_y_twist(size, p, 90)];
|
|
polyline_join(twisted)
|
|
sphere(.05);
|
|
}
|
|
|
|
![ptf_y_twist](images/lib3x-ptf_y_twist-1.JPG)
|