Skip to content
Snippets Groups Projects
Commit edd334c9 authored by Neil Gershenfeld's avatar Neil Gershenfeld
Browse files

start on yz

parent b581da83
Branches
No related tags found
No related merge requests found
// //
// mill raster 3D // mill raster 3D
// //
// Neil Gershenfeld 10/10/21 // Neil Gershenfeld 10/22/21
// //
// This work may be reproduced, modified, distributed, performed, and // This work may be reproduced, modified, distributed, performed, and
// displayed for any purpose, but must acknowledge the mods // displayed for any purpose, but must acknowledge the mods
...@@ -123,13 +123,19 @@ var interface = function(div){ ...@@ -123,13 +123,19 @@ var interface = function(div){
// //
div.appendChild(document.createTextNode('direction: ')) div.appendChild(document.createTextNode('direction: '))
var input = document.createElement('input') var input = document.createElement('input')
input.type = 'radio' input.type = 'checkbox'
input.name = mod.div.id+'direction' input.id = mod.div.id+'xz'
input.id = mod.div.id+'dirx'
input.checked = true input.checked = true
div.appendChild(input) div.appendChild(input)
mod.dirx = input mod.dirx = input
div.appendChild(document.createTextNode('xz')) 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')) div.appendChild(document.createElement('br'))
// //
// fit error // fit error
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment