1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-16 13:50:05 +01:00
dotSCAD/docs/lib3x-ptf_circle.md
2022-06-06 13:11:46 +08:00

1.0 KiB

ptf_circle

Transform a point inside a rectangle to a point inside a circle. You can use it to create something such as a noisy circle maze.

ptf_circle

Since: 2.3

Parameters

  • size : 2 value array [x, y], rectangle with dimensions x and y.
  • point : The point to be transformed.

Examples

use <polyline_join.scad>
use <ptf/ptf_circle.scad>

size = [10, 10];

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) {
    transformed = [for(p = line) ptf_circle(size, p)];
    polyline_join(transformed)
	    sphere(.05);
}

for(line = columns) {
    transformed = [for(p = line) ptf_circle(size, p)];
    polyline_join(transformed)
	    sphere(.05);
}

ptf_circle