diff --git a/README.md b/README.md index a6b5359b..4429ff3e 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ These examples incubate dotSCAD and dotSCAD refactors these examples. See [examp - [pie](https://openhome.cc/eGossip/OpenSCAD/lib3x-pie.html) - [polyline2d](https://openhome.cc/eGossip/OpenSCAD/lib3x-polyline2d.html) - [polygon_hull](https://openhome.cc/eGossip/OpenSCAD/lib3x-polygon_hull.html) -- [rounded_square](https://openhome.cc/eGossip/OpenSCAD/lib2x-rounded_square.html) +- [rounded_square](https://openhome.cc/eGossip/OpenSCAD/lib3x-rounded_square.html) ### 3D Module - [crystal_ball](https://openhome.cc/eGossip/OpenSCAD/lib2x-crystal_ball.html) diff --git a/docs/images/lib2x-rounded_square-1.JPG b/docs/images/lib3x-rounded_square-1.JPG similarity index 100% rename from docs/images/lib2x-rounded_square-1.JPG rename to docs/images/lib3x-rounded_square-1.JPG diff --git a/docs/images/lib2x-rounded_square-2.JPG b/docs/images/lib3x-rounded_square-2.JPG similarity index 100% rename from docs/images/lib2x-rounded_square-2.JPG rename to docs/images/lib3x-rounded_square-2.JPG diff --git a/docs/images/lib2x-rounded_square-3.JPG b/docs/images/lib3x-rounded_square-3.JPG similarity index 100% rename from docs/images/lib2x-rounded_square-3.JPG rename to docs/images/lib3x-rounded_square-3.JPG diff --git a/docs/lib2x-rounded_square.md b/docs/lib3x-rounded_square.md similarity index 76% rename from docs/lib2x-rounded_square.md rename to docs/lib3x-rounded_square.md index 7ea9597a..e9704a8e 100644 --- a/docs/lib2x-rounded_square.md +++ b/docs/lib3x-rounded_square.md @@ -1,6 +1,6 @@ # rounded_square -Creates a rounded square or rectangle in the first quadrant. When `center` is `true` the square is centered on the origin. +Creates a rounded square or rectangle in the first quadrant. ## Parameters @@ -15,7 +15,7 @@ Creates a rounded square or rectangle in the first quadrant. When `center` is `t rounded_square(size = 50, corner_r = 5); -![rounded_square](images/lib2x-rounded_square-1.JPG) +![rounded_square](images/lib3x-rounded_square-1.JPG) use ; @@ -25,7 +25,7 @@ Creates a rounded square or rectangle in the first quadrant. When `center` is `t center = true ); -![rounded_square](images/lib2x-rounded_square-2.JPG) +![rounded_square](images/lib3x-rounded_square-2.JPG) use ; @@ -36,7 +36,7 @@ Creates a rounded square or rectangle in the first quadrant. When `center` is `t center = true ); -![rounded_square](images/lib2x-rounded_square-3.JPG) +![rounded_square](images/lib3x-rounded_square-3.JPG) diff --git a/src/rounded_square.scad b/src/rounded_square.scad index 3b7828f8..a5f97f93 100644 --- a/src/rounded_square.scad +++ b/src/rounded_square.scad @@ -4,7 +4,7 @@ * @copyright Justin Lin, 2017 * @license https://opensource.org/licenses/lgpl-3.0.html * -* @see https://openhome.cc/eGossip/OpenSCAD/lib2x-rounded_square.html +* @see https://openhome.cc/eGossip/OpenSCAD/lib3x-rounded_square.html * **/