Incorrect cols arg in vnf_vertex_array() docs.

This commit is contained in:
Revar Desmera 2020-02-28 21:42:22 -08:00
parent da4f822eca
commit c8e5103db8
2 changed files with 2 additions and 3 deletions

View file

@ -8,7 +8,7 @@
//////////////////////////////////////////////////////////////////////
BOSL_VERSION = [2,0,135];
BOSL_VERSION = [2,0,136];
// Section: BOSL Library Version Functions

View file

@ -148,7 +148,7 @@ function vnf_triangulate(vnf) =
// Function: vnf_vertex_array()
// 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:
// 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
@ -156,7 +156,6 @@ function vnf_triangulate(vnf) =
// the first and/or last rows.
// Arguments:
// 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.
// cap1 = If true, add an endcap face to the first row.
// cap2 = If true, add an endcap face to the last row.