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

1.1 KiB

rounded_square

Creates a rounded square or rectangle in the first quadrant.

Parameters

  • size : Accepts single value, square with both sides this length. It also accepts 2 value array [x, y], rectangle with dimensions x and y.
  • corner_r : The corner is one-quarter of a circle (quadrant). The corner_r parameter determines the circle radius.
  • center : false (default), 1st (positive) quadrant, one corner at (0,0). true, square is centered at (0,0).
  • $fa, $fs, $fn : Used to control the four quadrants. Check the circle module for more details.

Examples

use <rounded_square.scad>

rounded_square(size = 50, corner_r = 5);

rounded_square

use <rounded_square.scad>

rounded_square(
    size = [50, 25],
    corner_r = 5, 
    center = true
);

rounded_square

use <rounded_square.scad>

$fn = 4;
rounded_square(
    size = [50, 25],
    corner_r = 5, 
    center = true
);

rounded_square