clarify level 'step down' is really an 'offset'
This commit is contained in:
parent
fa79fe8885
commit
2923a0bd88
3 changed files with 9 additions and 2 deletions
6
notes.md
6
notes.md
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
* `B` normals possibly inverted on faces in 2D to 3D conversion
|
||||
* `B` normalize left, bottom, right pop menu time/click and value persistence
|
||||
* `B` origin bug (Onshape?) when switching modes in 2.5 and 2.6
|
||||
|
||||
* `P` duplicate objects should share same slice data unless rotated or scaled
|
||||
* `P` allow selection to me decimated on demand (context menu?)
|
||||
|
|
@ -52,6 +53,7 @@
|
|||
|
||||
# CAM
|
||||
|
||||
* `B` trace clear and follow need depth-first support
|
||||
* `B` trace follow open polys should "heal" if ends touch
|
||||
* `B` trace open polys are not wound consistently
|
||||
* `B` path routing with tabs sometimes makes no sense
|
||||
|
|
@ -64,6 +66,7 @@
|
|||
* `B` climb vs conventional not fully consistent after refactor
|
||||
* `B` outside cutting direction in roughing mode inverted
|
||||
|
||||
* `F` intelligently turn circle hole pocket clear into spiral down
|
||||
* `F` trace follow hole that matches endmill should turn into a drill op
|
||||
* `F` new registration style: offset cutout
|
||||
* `F` add climb/conventional into each operation
|
||||
|
|
@ -88,7 +91,8 @@
|
|||
* `F` support lathe mode / A-axis / rotary
|
||||
* `F` gcode output option as zip for multiple or flip ops or tool change
|
||||
* `F` ease-down should be engaged in all descending cutting operations
|
||||
* `F` new reg type based on https://youtu.be/BLD4dFoXC7o?t=360
|
||||
* `F` entirely user-selectable origin
|
||||
|
||||
|
||||
* `P` common part pre-analyze to speed up 'slice' and improve shadow (overhangs)
|
||||
* `P` redo all path route / planning in prepare to account for terrain before camOut
|
||||
|
|
|
|||
|
|
@ -776,7 +776,7 @@
|
|||
spindle: UC.newInput(LANG.cc_spnd_s, {title:LANG.cc_spnd_l, convert:UC.toInt, show:hasSpindle}),
|
||||
step: UC.newInput(LANG.cc_sovr_s, {title:LANG.cc_sovr_l, convert:UC.toFloat, bound:UC.bound(0.01,1.0)}),
|
||||
rate: UC.newInput(LANG.cc_feed_s, {title:LANG.cc_feed_l, convert:UC.toInt, units:true}),
|
||||
down: UC.newInput(LANG.cc_sdwn_s, {title:LANG.cc_sdwn_l, convert:UC.toFloat, units:true}),
|
||||
down: UC.newInput(LANG.cc_loff_s, {title:LANG.cc_loff_l, convert:UC.toFloat, units:true}),
|
||||
};
|
||||
|
||||
createPopOp('rough', {
|
||||
|
|
|
|||
|
|
@ -283,6 +283,9 @@ kiri.lang['en-us'] = {
|
|||
cc_rzpd_s: "z feed",
|
||||
cc_rzpd_l: "max z moves feedrate\nin workspace units / minute",
|
||||
|
||||
cc_loff_s: "offset",
|
||||
cc_loff_l: "distance from stock face\nfor leveling pass\nin workspace units",
|
||||
|
||||
// CNC ROUGHING
|
||||
cr_menu: "rough",
|
||||
cr_lsto_s: "leave stock",
|
||||
|
|
|
|||
Loading…
Reference in a new issue