Skip to content

Commit

Permalink
added second test pass for top milling of minicommand
Browse files Browse the repository at this point in the history
  • Loading branch information
wesen committed May 16, 2010
1 parent e354973 commit d846f72
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions minicommand.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,20 @@
(drill :x 11.5 :y (- x 1.0) :diameter 18.5 :depth *frontplate-depth*)

(with-named-pass ("test")
(drill :x 11.5 :y (- x 1.0) :diameter 2 :depth 0.5))
(drill :x 11.5 :y (- x 1.0) :diameter 2 :depth 1.5))
(with-named-pass ("test2")
(drill :x 11.5 :y (- x 1.0) :diameter 18.5 :depth 1.5))
))

((string= package "DCJ0202")
(when *frontplate-side*
(with-named-pass ("test")
nil)


(with-named-pass ("test2")
(progn
(goto-abs :x 1.2 :y (+ y 5))
(rectangle-inline 11 9.5 :depth 1.5)))
#-debug
(progn
(goto-abs :x 1.2 :y (+ y 5))
Expand Down Expand Up @@ -102,6 +108,10 @@
(with-tool (tool)
(goto-abs :x 0 :y 0)
(goto-abs :z *fly-height*)))
(with-named-pass ("test2")
(with-tool (tool)
(goto-abs :x 0 :y 0)
(goto-abs :z *fly-height*)))

(with-named-pass ("mill")
(with-tool (*alu-tool-top*)
Expand Down

0 comments on commit d846f72

Please sign in to comment.