mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-12-27 18:48:15 +00:00
update joiners.scad and linalg.scad
This commit is contained in:
parent
8565ab6ff6
commit
488c42981f
2 changed files with 7 additions and 0 deletions
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue