Advertisement
Guest User

Untitled

a guest
Aug 13th, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (ns iconweb.views.device
  2.   (:use [c2.svg :only [translate]]))
  3.  
  4. (defn render
  5.   "Render a device given its description"
  6.   [{alias :alias x :x y :y}]
  7.     [:g {:transform (translate [x y])}
  8.      [:text alias {:class "deviceText"}]
  9.      [:rect {:class "deviceBox" :y "2" :width "60" :height "20" :rx "5" :ry "5"}]])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement