mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-30 00:09:37 +00:00
Added paths.scad to std.scad since it's used by so many modules.
This commit is contained in:
parent
5c7fc2eaf6
commit
0e187c82f8
6 changed files with 1 additions and 10 deletions
|
@ -9,9 +9,6 @@
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
include <BOSL2/paths.scad>
|
|
||||||
|
|
||||||
|
|
||||||
// Section: Terminology
|
// Section: Terminology
|
||||||
// **Polyline**: A series of points joined by straight line segements.
|
// **Polyline**: A series of points joined by straight line segements.
|
||||||
//
|
//
|
||||||
|
|
|
@ -234,7 +234,6 @@ module stroke(
|
||||||
// path = arc(points=[[5,30],[-10,-10],[30,5]], wedge=true);
|
// path = arc(points=[[5,30],[-10,-10],[30,5]], wedge=true);
|
||||||
// stroke(closed=true, path);
|
// stroke(closed=true, path);
|
||||||
// Example(FlatSpin):
|
// Example(FlatSpin):
|
||||||
// include <BOSL2/paths.scad>
|
|
||||||
// path = arc(points=[[0,30,0],[0,0,30],[30,0,0]]);
|
// path = arc(points=[[0,30,0],[0,0,30],[30,0,0]]);
|
||||||
// trace_polyline(path, showpts=true, color="cyan");
|
// trace_polyline(path, showpts=true, color="cyan");
|
||||||
function arc(N, r, angle, d, cp, points, width, thickness, start, wedge=false) =
|
function arc(N, r, angle, d, cp, points, width, thickness, start, wedge=false) =
|
||||||
|
|
1
std.scad
1
std.scad
|
@ -19,6 +19,7 @@ include <affine.scad>
|
||||||
include <quaternions.scad>
|
include <quaternions.scad>
|
||||||
include <coords.scad>
|
include <coords.scad>
|
||||||
include <geometry.scad>
|
include <geometry.scad>
|
||||||
|
include <paths.scad>
|
||||||
include <attachments.scad>
|
include <attachments.scad>
|
||||||
include <transforms.scad>
|
include <transforms.scad>
|
||||||
include <primitives.scad>
|
include <primitives.scad>
|
||||||
|
|
|
@ -9,9 +9,6 @@
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
include <BOSL2/paths.scad>
|
|
||||||
|
|
||||||
|
|
||||||
// Section: Generic Threading
|
// Section: Generic Threading
|
||||||
|
|
||||||
// Module: thread_helix()
|
// Module: thread_helix()
|
||||||
|
|
|
@ -7,8 +7,6 @@
|
||||||
// ```
|
// ```
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
// CommonCode:
|
|
||||||
// include <BOSL2/paths.scad>
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
// Section: Translations
|
// Section: Translations
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
// ```
|
// ```
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
include <BOSL2/paths.scad>
|
|
||||||
|
|
||||||
// Section: Walls
|
// Section: Walls
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue