From 00d2cd77e031f018e1b9be1227e483f4d6d71037 Mon Sep 17 00:00:00 2001 From: Alex Matulich Date: Thu, 12 Dec 2024 19:35:37 -0800 Subject: [PATCH] Fixed typo in new example for vnf_vertex_array --- vnf.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vnf.scad b/vnf.scad index 76fc2d1..441da0b 100644 --- a/vnf.scad +++ b/vnf.scad @@ -98,7 +98,7 @@ EMPTY_VNF = [[],[]]; // The standard empty VNF with no vertices or faces. // for(h=[-20:20:20]) // path3d(arc(r=40-abs(h), angle=280, 10), h) // ]; -// vnf = vnf_vertex_array(rows, reverse=true, caps=true, col_wrap-true); +// vnf = vnf_vertex_array(rows, reverse=true, caps=true, col_wrap=true); // vnf_polyhedron(vnf); // color("green") vnf_wireframe(vnf); // Example(3D): Both `col_wrap` and `row_wrap` are true to make a torus.