mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-01 09:49:45 +00:00
Incorrect cols arg in vnf_vertex_array() docs.
This commit is contained in:
parent
da4f822eca
commit
c8e5103db8
2 changed files with 2 additions and 3 deletions
|
@ -8,7 +8,7 @@
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
BOSL_VERSION = [2,0,135];
|
BOSL_VERSION = [2,0,136];
|
||||||
|
|
||||||
|
|
||||||
// Section: BOSL Library Version Functions
|
// Section: BOSL Library Version Functions
|
||||||
|
|
3
vnf.scad
3
vnf.scad
|
@ -148,7 +148,7 @@ function vnf_triangulate(vnf) =
|
||||||
|
|
||||||
// Function: vnf_vertex_array()
|
// Function: vnf_vertex_array()
|
||||||
// Usage:
|
// Usage:
|
||||||
// vnf = vnf_vertex_array(points, cols, [caps], [cap1], [cap2], [reverse], [col_wrap], [row_wrap], [vnf]);
|
// vnf = vnf_vertex_array(points, [caps], [cap1], [cap2], [reverse], [col_wrap], [row_wrap], [vnf]);
|
||||||
// Description:
|
// Description:
|
||||||
// Creates a VNF structure from a vertex list, by dividing the vertices into columns and rows,
|
// Creates a VNF structure from a vertex list, by dividing the vertices into columns and rows,
|
||||||
// adding faces to tile the surface. You can optionally have faces added to wrap the last column
|
// adding faces to tile the surface. You can optionally have faces added to wrap the last column
|
||||||
|
@ -156,7 +156,6 @@ function vnf_triangulate(vnf) =
|
||||||
// the first and/or last rows.
|
// the first and/or last rows.
|
||||||
// Arguments:
|
// Arguments:
|
||||||
// points = A list of vertices to divide into columns and rows.
|
// points = A list of vertices to divide into columns and rows.
|
||||||
// cols = The number of points in a column.
|
|
||||||
// caps = If true, add endcap faces to the first AND last rows.
|
// caps = If true, add endcap faces to the first AND last rows.
|
||||||
// cap1 = If true, add an endcap face to the first row.
|
// cap1 = If true, add an endcap face to the first row.
|
||||||
// cap2 = If true, add an endcap face to the last row.
|
// cap2 = If true, add an endcap face to the last row.
|
||||||
|
|
Loading…
Reference in a new issue