-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
wesen3000
committed
Mar 21, 2010
1 parent
694f3b2
commit 511b4a8
Showing
5 changed files
with
177 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,11 @@ | |
:version "0.1" | ||
:maintainer "Manuel Odendahl <[email protected]>" | ||
:serial t | ||
:depends-on (:cl-gd :uffi :cocoahelper :lispbuilder-sdl :unit-test :cl-pdf :cxml :cl-ppcre) | ||
:depends-on (#+nil :cl-gd | ||
:uffi | ||
#+nil :cocoahelper | ||
#+nil :lispbuilder-sdl | ||
:unit-test :cl-pdf :cxml :cl-ppcre) | ||
:components | ||
( | ||
;; thirdparty | ||
|
@@ -25,7 +29,7 @@ | |
(:file "geometry") | ||
(:file "arc") | ||
(:file "bezier") | ||
(:file "offset") | ||
;; (:file "offset") | ||
|
||
;; potrace externals | ||
(:file "pot-uffi") | ||
|
@@ -35,15 +39,15 @@ | |
(:file "opcodes") | ||
|
||
;; tracer | ||
(:file "potrace") | ||
;; (:file "potrace") | ||
|
||
;; panelizing and stuff | ||
(:file "shapes") | ||
(:file "moves") | ||
(:file "panel") | ||
(:file "cube") | ||
|
||
(:file "raster") | ||
;; (:file "raster") | ||
|
||
;; optimizer | ||
(:file "optimize") | ||
|
@@ -52,9 +56,11 @@ | |
(:file "drill") | ||
|
||
;; formats and exporters and importers | ||
(:file "sdl") | ||
#+nil(:file "sdl") | ||
(:file "p5") | ||
(:file "pdf") | ||
(:file "svg") | ||
|
||
(:file "minicommand") | ||
|
||
)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
(in-package :gcode) | ||
|
||
(defparameter *epoxy-tool* | ||
(make-instance 'tool | ||
:diameter 0.3 | ||
:number 13 | ||
:depth 1)) | ||
|
||
(defun pcb-fix () | ||
(let ((*fly-height* 8)) | ||
(with-program ("pcb-fix") | ||
(goto-abs :z *fly-height*) | ||
(with-tool (*epoxy-tool*) | ||
(with-named-pass ("mill") | ||
(home) | ||
(goto-abs :x 24.9 :y 3) | ||
(with-tool-down (0.8) | ||
(mill-rel :x -9) | ||
(mill-rel :y 11) | ||
|
||
(mill-rel :x 6) | ||
(mill-rel :y 8) | ||
(mill-rel :x 14) | ||
(mill-rel :y -14) | ||
(mill-rel :x -11) | ||
(mill-rel :y -5) | ||
)))))) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters