私は Clojure の初心者です。画面に線と円を描きたいのですが、アンチエイリアスが必要です。どうすればよいですか? 誰かが私にいくつかのサンプル コードを貼り付けることができますか?
別の問題として、マップを定義します。
(def {:a 1, :b 2, :c 3}, i try to change it to be {:a 1, :b 99, :c 3},
どうやってするの?
キルを見てください。 https://github.com/quil/quil
これは Processing http://processing.orgに基づいており、簡単に作業できます。
私はこれがあなたが望むことをすると思います...例から適応:
(ns foo
(:use quil.core))
(defn setup []
(smooth) ;;Turn on anti-aliasing
(frame-rate 10) ;;Set framerate to 10 FPS
(background 200)) ;;Set the background colour to
;; a nice shade of grey.
(defn draw []
(stroke 0) ;;Set the stroke colour to a black
(stroke-weight 3) ;;Set the stroke thickness to 3
(line 10 10 50 50)
(line 20 20 100 50))
(defsketch example ;;Define a new sketch named example
:title "foo" ;;Set the title of the sketch
:setup setup ;;Specify the setup fn
:draw draw ;;Specify the draw fn
:size [323 200])