mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
Tweak docs formatting in arrays.scad
This commit is contained in:
parent
2f1760a342
commit
49ffaacb28
2 changed files with 8 additions and 7 deletions
13
arrays.scad
13
arrays.scad
|
@ -5,15 +5,16 @@
|
||||||
// ```
|
// ```
|
||||||
// use <BOSL2/std.scad>
|
// use <BOSL2/std.scad>
|
||||||
// ```
|
// ```
|
||||||
//
|
|
||||||
// # Terminology
|
|
||||||
// - **List**: An ordered collection of zero or more items. ie: ["a", "b", "c"]
|
|
||||||
// - **Vector**: A list of numbers. ie: [4, 5, 6]
|
|
||||||
// - **Array**: A nested list of lists, or list of lists of lists, or deeper. ie: [[2,3], [4,5], [6,7]]
|
|
||||||
// - **Dimension**: The depth of nesting of lists in an array. A List is 1D. A list of lists is 2D. etc.
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
|
// Section: Terminology
|
||||||
|
// - **List**: An ordered collection of zero or more items. ie: `["a", "b", "c"]`
|
||||||
|
// - **Vector**: A list of numbers. ie: `[4, 5, 6]`
|
||||||
|
// - **Array**: A nested list of lists, or list of lists of lists, or deeper. ie: `[[2,3], [4,5], [6,7]]`
|
||||||
|
// - **Dimension**: The depth of nesting of lists in an array. A List is 1D. A list of lists is 2D. etc.
|
||||||
|
|
||||||
|
|
||||||
// Section: List Query Operations
|
// Section: List Query Operations
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
BOSL_VERSION = [2,0,77];
|
BOSL_VERSION = [2,0,78];
|
||||||
|
|
||||||
|
|
||||||
// Section: BOSL Library Version Functions
|
// Section: BOSL Library Version Functions
|
||||||
|
|
Loading…
Reference in a new issue