diff --git a/version.scad b/version.scad index 8429fd6..418bb3c 100644 --- a/version.scad +++ b/version.scad @@ -8,7 +8,7 @@ ////////////////////////////////////////////////////////////////////// -BOSL_VERSION = [2,0,135]; +BOSL_VERSION = [2,0,136]; // Section: BOSL Library Version Functions diff --git a/vnf.scad b/vnf.scad index b68f494..2ec6dfa 100644 --- a/vnf.scad +++ b/vnf.scad @@ -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.