1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 14:18:13 +01:00
dotSCAD/examples/tiles/tiled_quarter_circles.scad
2022-06-06 13:11:46 +08:00

25 lines
595 B
OpenSCAD

use <experimental/tile_truchet.scad>
use <arc.scad>
size = [50, 25];
tile_width = 5;
line_width = 1;
$fn = 4; // 4, 8, 12 ....
for(tile = tile_truchet(size)) {
x = tile.x;
y = tile.y;
if(tile[2] <= 1) {
translate([x, y] * tile_width)
arc(0.5 * tile_width, [0, 90], line_width);
translate([x + 1, y + 1] * tile_width)
arc(0.5 * tile_width, [180, 270], line_width);
}
else {
translate([x, y + 1] * tile_width)
arc(0.5 * tile_width, [270, 360], line_width);
translate([x + 1, y] * tile_width)
arc(0.5 * tile_width, [90, 180], line_width);
}
}