mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
fixed bug in is_path()
This commit is contained in:
parent
4b5e0835cc
commit
b1bd81e26f
1 changed files with 2 additions and 3 deletions
|
@ -45,9 +45,8 @@ include <BOSL2/triangulation.scad>
|
|||
function is_path(list, dim=[2,3], fast=false) =
|
||||
fast? is_list(list) && is_vector(list[0],fast=true) :
|
||||
is_list(list) && is_list(list[0]) && len(list)>1 &&
|
||||
let( d = len(list[0]) )
|
||||
(is_undef(dim) || in_list(d, force_list(dim))) &&
|
||||
is_list_of(list, repeat(0,d));
|
||||
(is_undef(dim) || in_list(len(list[0]), force_list(dim))) &&
|
||||
is_list_of(list, repeat(0,len(list[0])));
|
||||
|
||||
|
||||
// Function: is_closed_path()
|
||||
|
|
Loading…
Reference in a new issue