1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-08-29 02:00:12 +02:00

Screws.scad is now included in core.scad, so doesn't need to be included

anywhere else. utils/core/core.scad is the old version without fasteners to
be used internally in the library.
This commit is contained in:
Chris Palmer
2020-02-29 17:52:36 +00:00
parent 9b104e4fe7
commit ab592e049c
194 changed files with 242 additions and 290 deletions

View File

@@ -22,7 +22,7 @@
//! Can be used to round corners. Positive offsets will round convex corners, negative offsets round concave corners. To round both use [`round_3D()`](#round).
//!
//! If `chamfer_base` is true then the bottom edge is made suitable for 3D printing by chamfering when the angle gets shallower than 45 degrees.
include <../core.scad>
include <../utils/core/core.scad>
module offset_3D(r, chamfer_base = false) { //! Offset 3D shape by specified radius ```r```, positive or negative.
module ball(r)