Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
pub
mods
Commits
edd334c9
Commit
edd334c9
authored
Oct 22, 2021
by
Neil Gershenfeld
Browse files
start on yz
parent
b581da83
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/processes/mill/raster/3D
View file @
edd334c9
//
// 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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment