update joiners.scad and linalg.scad

This commit is contained in:
Richard Milewski 2025-12-14 15:03:18 -08:00
parent 8565ab6ff6
commit 488c42981f
2 changed files with 7 additions and 0 deletions

View file

@ -8,6 +8,9 @@
// FileSummary: Joiner shapes for connecting separately printed objects.
//////////////////////////////////////////////////////////////////////
_BOSL2_JOINERS = is_undef(_BOSL2_STD) && (is_undef(BOSL2_NO_STD_WARNING) || !BOSL2_NO_STD_WARNING) ?
echo("Warning: joiners.scad included without std.scad; dependencies may be missing\nSet BOSL2_NO_STD_WARNING = true to mute this warning.") true : true;
include <rounding.scad>

View file

@ -10,6 +10,10 @@
// FileFootnotes: STD=Included in std.scad
//////////////////////////////////////////////////////////////////////
_BOSL2_LINALG = is_undef(_BOSL2_STD) && (is_undef(BOSL2_NO_STD_WARNING) || !BOSL2_NO_STD_WARNING) ?
echo("Warning: linalg.scad included without std.scad; dependencies may be missing\nSet BOSL2_NO_STD_WARNING = true to mute this warning.") true : true;
// Section: Matrices
// The matrix, a rectangular array of numbers which represents a linear transformation,
// is the fundamental object in linear algebra. In OpenSCAD a matrix is a list of lists of numbers