From edd334c96626e1d8589f18d467e41f3bcb1d97b1 Mon Sep 17 00:00:00 2001 From: Neil Gershenfeld <gersh@cba.mit.edu> Date: Fri, 22 Oct 2021 17:57:18 -0400 Subject: [PATCH] start on yz --- modules/processes/mill/raster/3D | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/modules/processes/mill/raster/3D b/modules/processes/mill/raster/3D index a3e5cac..817d5b6 100644 --- a/modules/processes/mill/raster/3D +++ b/modules/processes/mill/raster/3D @@ -1,7 +1,7 @@ // // mill raster 3D // -// Neil Gershenfeld 10/10/21 +// Neil Gershenfeld 10/22/21 // // This work may be reproduced, modified, distributed, performed, and // displayed for any purpose, but must acknowledge the mods @@ -123,13 +123,19 @@ var interface = function(div){ // div.appendChild(document.createTextNode('direction: ')) var input = document.createElement('input') - input.type = 'radio' - input.name = mod.div.id+'direction' - input.id = mod.div.id+'dirx' + input.type = 'checkbox' + input.id = mod.div.id+'xz' input.checked = true div.appendChild(input) mod.dirx = input div.appendChild(document.createTextNode('xz')) + var input = document.createElement('input') + input.type = 'checkbox' + input.id = mod.div.id+'yz' + input.checked = true + div.appendChild(input) + mod.diry = input + div.appendChild(document.createTextNode('yz')) div.appendChild(document.createElement('br')) // // fit error -- GitLab