Skip to content

Commit

Permalink
Changed modifiers from !. to |.
Browse files Browse the repository at this point in the history
  • Loading branch information
EricGebhart committed Jun 12, 2014
1 parent 5970fb1 commit 02f0b3e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/scad_clj/model.clj
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@
(if (some #{modifier} [:# :% :* :!])
`(:modifier ~(name modifier) ~@block)))

(defn !# [& block] (modifier :# block))
(defn !% [& block] (modifier :% block))
(defn !* [& block] (modifier :* block))
(defn !! [& block] (modifier :! block))
(defn |# [& block] (modifier :# block))
(defn |% [& block] (modifier :% block))
(defn |* [& block] (modifier :* block))
(defn |! [& block] (modifier :! block))

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; 2D
Expand Down

0 comments on commit 02f0b3e

Please sign in to comment.