-
Notifications
You must be signed in to change notification settings - Fork 12
/
samples.lisp
271 lines (225 loc) · 7.35 KB
/
samples.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
(in-package :plotter)
;; ---------------------------------------------
(plt:fplot 'plt '(-20 20) (lambda (x) (/ (sin x) x))
:clear t
:title "Sinc(x)"
:thick 2
;; :symbol :circle
;; :plot-joined t
)
(clear 'plt)
;; ---------------------------------------------
(let* ((pane (capi:contain
(make-instance 'plotter-pane))
))
(plt:fplot pane '(-10 10) #'sinc
:clear t
:title "Sinc(x)"
:thick 2
:legend "Sinc"))
;; ---------------------------------------------
(plt:fplot 'plt '(-5 5) #'exp
:clear t
:title "Exp(x)"
:thick 2
:symbol :circle
:plot-joined t
:ylog t
:legend "Trial Run"
)
;; ---------------------------------------------
(plt:plot 'plt (vm:unoise 10)
:clear t
:thick 2
:line-type :stepped)
(plt:plot 'plt (vm:unoise 10)
:clear t
:thick 2
:line-type :histo)
;; ---------------------------------------------
(plt:plot 'plt (vm:unoise 10)
:clear t
:thick 2
:symbol :vbars
:alpha 0.2)
;; ---------------------------------------------
(plt:histogram 'plt (vm:gnoise 10_000)
:clear t
:thick 1)
;; ---------------------------------------------
(let* ((screen (capi:convert-to-screen))
(port (capi:create-dummy-graphics-port screen))
(ext-img (gp:read-external-image
(translate-logical-pathname
"PROJECTS:LIB;Logo75Img-Alpha25y.bmp"
;; "PROJECTS:LIB;Logo75Img-Alpha25y.pdf"
))))
(with-image (port
(image (gp:convert-external-image port ext-img)))
(ac:send ac:fmt-println "Image size: ~A x ~A"
(gp:image-width image)
(gp:image-height image))
(ac:send ac:fmt-println "Pane size: ~A x ~A"
(gp:port-width port)
(gp:port-height port))
))
;; ---------------------------------------------
(defvar *plt*
(let ((plt (capi:contain
(make-instance 'articulated-plotter-pane
:nominal-x 40
:nominal-y 50))))
(fplot plt '(-20 20) #'sinc
:clear t
:thick 2)
plt))
;; --------------------------------------------
(progn
(defparameter *plt* nil)
(capi:define-interface thingy ()
()
(:panes
(graf articulated-plotter-pane
:accessor graf)
(inspect-button capi:button
:text "Inspect"
:callback (lambda (x intf)
(inspect (graf intf)))
))
(:layouts
(button-layout
capi:row-layout
'(nil inspect-button))
(main-layout
capi:column-layout
'(graf button-layout)))
(:default-initargs
:layout 'main-layout
:title "Test Graf"
:best-width 408
:best-height 351))
(defun doit ()
(setf *plt*
(graf (capi:display (make-instance 'thingy)
)))
(fplot *plt* '(-20 20) #'sinc :clear t :thick 2))
(doit))
(doit)
(bounding-region *plt*)
(fplot *plt* '(-20 20) #'sinc :clear t :thick 2)
(clear *plt*)
;; -----------------------------------------------------
(progn
(defparameter *intf* nil)
(defparameter *plt-l* nil)
(defparameter *plt-r* nil)
(capi:define-interface dual-thingy ()
()
(:panes
(graf-l articulated-plotter-pane
:accessor graf-l)
(graf-r articulated-plotter-pane
:accessor graf-r)
(inspect-button-l capi:button
:text "Inspect-L"
:callback (lambda (x intf)
(inspect (graf-l intf))))
(inspect-button-r capi:button
:text "Inspect-R"
:callback (lambda (x intf)
(inspect (graf-r intf))))
)
(:layouts
(left-layout
capi:column-layout
'(graf-l inspect-button-l))
(right-layout
capi:column-layout
'(graf-r inspect-button-r))
(main-layout
capi:row-layout
'(left-layout right-layout)))
(:default-initargs
:layout 'main-layout
:title "Test GrafPair"
:best-width 811
:best-height 351))
(defun doit ()
(setf *intf*
(capi:display (make-instance 'dual-thingy)
)
*plt-l* (graf-l *intf*)
*plt-r* (graf-r *intf*))
(fplot *plt-l* '(-20 20) #'sinc :clear t :thick 2)
(fplot *plt-r* '(-10 10) #'sinc :clear t :thick 2))
(doit))
(fplot *plt-r* '(-10 10) #'sinc :clear t :thick 2)
(inspect *plt-r*)
(bounding-region *plt-l*)
(bounding-region *plt-r*)
(plotting-region *plt-l*)
(plotting-region *plt-r*)
(plotter-mask *plt-l*)
(plotter-mask *plt-r*)
;; ----------------------------------------------------------
(let* ((drawing-area (make-instance 'articulated-plotter-pane
:x 50
:y 50
:width 200
:height 150))
(pinboard (make-instance 'capi:pinboard-layout
:description
(list
drawing-area)
:background :gray30
:x 120
:y 20
:width 400
:height 300))
(outer-pb (make-instance 'capi:pinboard-layout
:description
(list pinboard))))
(capi:contain outer-pb
:best-width 800
:best-height 600)
(fplot drawing-area '(-20 20)
#'sinc
:clear t
:title "Sinc(x)"
:thick 2))
;; -----------------------------------------------
(defclass thing (capi:pinboard-layout)
((plt :accessor thing-plt)))
(defmethod initialize-instance :after ((obj thing) &key (pltx 30) (plty 10) (pltw 200) (plth 150) &allow-other-keys)
(let ((plt (make-instance 'articulated-plotter-pane
:x pltx
:y plty
:width pltw
:height plth
)))
(setf (thing-plt obj) plt)
(push plt (capi:layout-description obj))
(ac:with-actors
(fplot plt '(-20 20) #'sinc :clear t :thick 2))
))
(let ((pane (make-instance 'thing)))
(sleep 1)
(capi:contain pane))
(capi:contain (make-instance 'thing))
(let ((athing (capi:contain (make-instance 'thing))))
(sleep 1)
(let ((plt2 (make-instance 'articulated-plotter-pane
:x 150
:y 130
:width 200
:height 150)))
(capi:apply-in-pane-process
athing
(lambda ()
(push plt2 (capi:layout-description athing))
(ac:with-actors
(fplot plt2 '(-10 10) #'sinc :clear t :thick 2 :color :red))))
))
(let ((athing (capi:contain (make-instance 'thing))))
(inspect athing)
(fplot (thing-plt athing) '(-20 20) #'sinc :clear t :thick 2))