improve file summaries

This commit is contained in:
Adrian Mariano 2022-01-14 22:33:21 -05:00
parent 6e11a1c550
commit 39f5e5e56d
2 changed files with 10 additions and 6 deletions

View file

@ -1,16 +1,17 @@
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
// LibFile: utility.scad // LibFile: utility.scad
// Utility functions used in argument processing. // Functions for type checking, handling undefs, processing function arguments,
// and testing.
// Includes: // Includes:
// include <BOSL2/std.scad> // include <BOSL2/std.scad>
// FileGroup: Data Management // FileGroup: Data Management
// FileSummary: Helpers for argument processing. // FileSummary: Type checking, dealing with undefs, processing function args
// FileFootnotes: STD=Included in std.scad // FileFootnotes: STD=Included in std.scad
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
// Section: Type handling helpers. // Section: Type Checking
// Function: typeof() // Function: typeof()
@ -403,7 +404,7 @@ function all_defined(v,recursive=false) =
// Section: Argument Helpers // Section: Processing Arguments to Functions and Modules
// Function: get_anchor() // Function: get_anchor()

View file

@ -1,10 +1,13 @@
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
// LibFile: vectors.scad // LibFile: vectors.scad
// Vector math functions. // This file provides some mathematical operations that apply to each
// entry in a vector. It provides normalizatoin and angle computation, and
// it provides functions for searching lists of vectors for matches to
// a given vector.
// Includes: // Includes:
// include <BOSL2/std.scad> // include <BOSL2/std.scad>
// FileGroup: Math // FileGroup: Math
// FileSummary: Vector math functions. // FileSummary: Vector arithmetic, angle, and searching.
// FileFootnotes: STD=Included in std.scad // FileFootnotes: STD=Included in std.scad
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////