removing tabs

This commit is contained in:
RonaldoCMP
2021-05-18 20:10:29 +01:00
parent 64b304954e
commit 703e582846

View File

@@ -156,7 +156,7 @@ function vnf_add_faces(vnf=EMPTY_VNF, faces) =
// cleanup - when true, consolidates the duplicate vertices of the merge. Default: false
// eps - the tolerance in finding duplicates when cleanup=true. Default: EPSILON
function vnf_merge(vnfs, cleanup=false, eps=EPSILON) =
is_vnf(vnfs) ? vnf_merge([vnfs], cleanup) :
is_vnf(vnfs) ? vnf_merge([vnfs], cleanup, eps) :
assert( is_vnf_list(vnfs) , "Improper vnf or vnf list")  
let (
offs = cumsum([ 0, for (vnf = vnfs) len(vnf[0]) ]),