File: contour.rkt

package info (click to toggle)
racket 7.2%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 125,432 kB
  • sloc: ansic: 258,980; pascal: 59,975; sh: 33,650; asm: 13,558; lisp: 7,124; makefile: 3,329; cpp: 2,889; exp: 499; python: 274; xml: 11
file content (271 lines) | stat: -rw-r--r-- 12,561 bytes parent folder | download | duplicates (3)
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
#lang typed/racket/base

;; Renderers for contour lines and contour intervals

(require typed/racket/class racket/match racket/list racket/vector
         plot/utils
         "../common/type-doc.rkt"
         "../common/utils.rkt")

(provide (all-defined-out))

;; ===================================================================================================
;; One contour line

(: isoline-render-proc (-> 2D-Sampler Real Positive-Integer
                           Plot-Color Nonnegative-Real Plot-Pen-Style
                           Nonnegative-Real
                           (U String #f)
                           2D-Render-Proc))
(define ((isoline-render-proc g z samples color width style alpha label) area)
  (match-define (vector x-ivl y-ivl) (send area get-bounds-rect))
  (match-define (ivl x-min x-max) x-ivl)
  (match-define (ivl y-min y-max) y-ivl)
  (define num (animated-samples samples))
  (define sample (g (vector x-ivl y-ivl) (vector num num)))
  (match-define (2d-sample xs ys zss z-min z-max) sample)
  
  (when (and z-min z-max (<= z-min z z-max))
    (send area put-alpha alpha)
    (send area put-pen color width style)
    (for-2d-sample
     (xa xb ya yb z1 z2 z3 z4) sample
     (for ([line  (in-list (heights->lines xa xb ya yb z z1 z2 z3 z4))])
       (match-define (list v1 v2) (map (λ ([v : (Vectorof Real)]) (vector-take v 2)) line))
       (send area put-line v1 v2))))
  
  (cond [label  (line-legend-entry label color width style)]
        [else   empty]))

(:: isoline
    (->* [(-> Real Real Real) Real]
         [(U Real #f) (U Real #f)
          (U Real #f) (U Real #f)
          #:samples Positive-Integer
          #:color Plot-Color
          #:width Nonnegative-Real
          #:style Plot-Pen-Style
          #:alpha Nonnegative-Real
          #:label (U String #f)]
         renderer2d))
(define (isoline f z [x-min #f] [x-max #f] [y-min #f] [y-max #f]
                 #:samples [samples (contour-samples)]
                 #:color [color (line-color)]
                 #:width [width (line-width)]
                 #:style [style (line-style)]
                 #:alpha [alpha (line-alpha)]
                 #:label [label #f])
  (define fail/pos (make-raise-argument-error 'isoline f z x-min x-max y-min y-max))
  (define fail/kw (make-raise-keyword-error 'isoline))
  (cond
    [(not (rational? z))  (fail/pos "rational?" 1)]
    [(and x-min (not (rational? x-min)))  (fail/pos "#f or rational" 2)]
    [(and x-max (not (rational? x-max)))  (fail/pos "#f or rational" 3)]
    [(and y-min (not (rational? y-min)))  (fail/pos "#f or rational" 4)]
    [(and y-max (not (rational? y-max)))  (fail/pos "#f or rational" 5)]
    [(< samples 2)  (fail/kw "Integer >= 2" '#:samples samples)]
    [(not (rational? width))  (fail/kw "rational?" '#:width width)]
    [(or (> alpha 1) (not (rational? alpha)))  (fail/kw "real in [0,1]" '#:alpha alpha)]
    [else
     (define x-ivl (ivl x-min x-max))
     (define y-ivl (ivl y-min y-max))
     (define g (2d-function->sampler f (vector x-ivl y-ivl)))
     (renderer2d (vector x-ivl y-ivl) #f default-ticks-fun
                 (isoline-render-proc g z samples color width style alpha label))]))

;; ===================================================================================================
;; Contour lines

(: contours-render-proc (-> 2D-Sampler Contour-Levels Positive-Integer
                            (Plot-Colors (Listof Real))
                            (Pen-Widths (Listof Real))
                            (Plot-Pen-Styles (Listof Real))
                            (Alphas (Listof Real))
                            (U String #f)
                            2D-Render-Proc))
(define ((contours-render-proc g levels samples colors widths styles alphas label) area)
  (let/ec return : (Treeof legend-entry)
    (match-define (vector x-ivl y-ivl) (send area get-bounds-rect))
    (match-define (ivl x-min x-max) x-ivl)
    (match-define (ivl y-min y-max) y-ivl)
    (define num (animated-samples samples))
    (define sample (g (vector x-ivl y-ivl) (vector num num)))
    (match-define (2d-sample xs ys zss z-min z-max) sample)
    
    (unless (and z-min z-max) (return empty))
    
    (match-define (list (tick #{zs : (Listof Real)}
                              #{_ : (Listof Boolean)}
                              #{labels : (Listof String)})
                        ...)
      (contour-ticks (plot-z-ticks) (assert z-min values) (assert z-max values) levels #f))
    
    (let* ([colors  (generate-list colors zs)]
           [widths  (generate-list widths zs)]
           [styles  (generate-list styles zs)]
           [alphas  (generate-list alphas zs)])
      (for ([z      (in-list zs)]
            [color  (in-cycle* colors)]
            [width : Nonnegative-Real  (in-cycle* widths)]
            [style  (in-cycle* styles)]
            [alpha : Nonnegative-Real  (in-cycle* alphas)])
        (send area put-alpha alpha)
        (send area put-pen color width style)
        (for-2d-sample
         (xa xb ya yb z1 z2 z3 z4) sample
         (for ([line  (in-list (heights->lines xa xb ya yb z z1 z2 z3 z4))])
           (match-define (list v1 v2) (map (λ ([v : (Vectorof Real)]) (vector-take v 2)) line))
           (send area put-line v1 v2)))))
    
    (cond [(and label (not (empty? zs)))  (line-legend-entries label zs labels colors widths styles)]
          [else  empty])))

(:: contours
    (->* [(-> Real Real Real)]
         [(U Real #f) (U Real #f)
          (U Real #f) (U Real #f)
          #:samples Positive-Integer
          #:levels Contour-Levels
          #:colors (Plot-Colors (Listof Real))
          #:widths (Pen-Widths (Listof Real))
          #:styles (Plot-Pen-Styles (Listof Real))
          #:alphas (Alphas (Listof Real))
          #:label (U String #f)]
         renderer2d))
(define (contours f [x-min #f] [x-max #f] [y-min #f] [y-max #f]
                  #:samples [samples (contour-samples)]
                  #:levels [levels (contour-levels)]
                  #:colors [colors (contour-colors)]
                  #:widths [widths (contour-widths)]
                  #:styles [styles (contour-styles)]
                  #:alphas [alphas (contour-alphas)]
                  #:label [label #f])
  (define fail/pos (make-raise-argument-error 'contours f x-min x-max y-min y-max))
  (define fail/kw (make-raise-keyword-error 'contours))
  (cond
    [(and x-min (not (rational? x-min)))  (fail/pos "#f or rational" 2)]
    [(and x-max (not (rational? x-max)))  (fail/pos "#f or rational" 3)]
    [(and y-min (not (rational? y-min)))  (fail/pos "#f or rational" 4)]
    [(and y-max (not (rational? y-max)))  (fail/pos "#f or rational" 5)]
    [(< samples 2)  (fail/kw "Integer >= 2" '#:samples samples)]
    [else
     (define x-ivl (ivl x-min x-max))
     (define y-ivl (ivl y-min y-max))
     (define g (2d-function->sampler f (vector x-ivl y-ivl)))
     (renderer2d (vector x-ivl y-ivl) #f default-ticks-fun
                 (contours-render-proc g levels samples colors widths styles alphas label))]))

;; ===================================================================================================
;; Contour intervals

(: contour-intervals-render-proc
   (-> 2D-Sampler Contour-Levels Positive-Integer
       (Plot-Colors (Listof ivl)) (Plot-Brush-Styles (Listof ivl))
       (Plot-Colors (Listof Real)) (Pen-Widths (Listof Real)) (Plot-Pen-Styles (Listof Real))
       (Alphas (Listof ivl))
       (U String #f)
       2D-Render-Proc))
(define ((contour-intervals-render-proc
          g levels samples colors styles contour-colors contour-widths contour-styles alphas label)
         area)
  (let/ec return : (Treeof legend-entry)
    (match-define (vector x-ivl y-ivl) (send area get-bounds-rect))
    (match-define (ivl x-min x-max) x-ivl)
    (match-define (ivl y-min y-max) y-ivl)
    (define num (animated-samples samples))
    (define sample (g (vector x-ivl y-ivl) (vector num num)))
    (match-define (2d-sample xs ys zss z-min z-max) sample)
    
    (unless (and z-min z-max) (return empty))
    
    (match-define (list (tick #{zs : (Listof Real)}
                              #{_ : (Listof Boolean)}
                              #{labels : (Listof String)})
                        ...)
      (contour-ticks (plot-z-ticks) (assert z-min values) (assert z-max values) levels #t))
    
    (define-values (z-ivls ivl-labels)
      (for/lists ([z-ivls : (Listof ivl)]
                  [ivl-labels : (Listof String)]
                  ) ([za  (in-list zs)]
                     [zb  (in-list (rest zs))]
                     [la  (in-list labels)]
                     [lb  (in-list (rest labels))])
        (values (ivl za zb) (format "[~a,~a]" la lb))))
    
    (send area put-pen 0 1 'transparent)
    (let* ([colors  (map ->brush-color (generate-list colors z-ivls))]
           [styles  (map ->brush-style (generate-list styles z-ivls))]
           [alphas  (generate-list alphas z-ivls)])
      (for ([za     (in-list zs)]
            [zb     (in-list (rest zs))]
            [color : (List Real Real Real)  (in-cycle* colors)]
            [style : Plot-Brush-Style  (in-cycle* styles)]
            [alpha : Nonnegative-Real  (in-cycle* alphas)])
        (send area put-brush color style)
        (send area put-alpha alpha)
        (for-2d-sample
         (xa xb ya yb z1 z2 z3 z4) sample
         (for ([poly  (in-list (heights->polys xa xb ya yb za zb z1 z2 z3 z4))])
           (send area put-polygon (map (λ ([v : (Vectorof Real)]) (vector-take v 2)) poly)))))
      
      ((contours-render-proc g levels samples contour-colors contour-widths contour-styles alphas #f)
       area)
      
      (define n (- (length zs) 2))
      (define contour-colors*
        (append (list 0) (sequence-take (in-cycle* (generate-list contour-colors zs)) 0 n) (list 0)))
      (define contour-widths*
        (append (list 0) (sequence-take (in-cycle* (generate-list contour-widths zs)) 0 n) (list 0)))
      (define contour-styles*
        (append '(transparent) (sequence-take (in-cycle* (generate-list contour-styles zs)) 0 n)
                '(transparent)))
      
      (cond [label  (interval-legend-entries
                     label z-ivls ivl-labels
                     colors styles colors '(1) '(transparent)
                     contour-colors* contour-widths* contour-styles*
                     (rest contour-colors*) (rest contour-widths*) (rest contour-styles*))]
            [else   empty]))))

(:: contour-intervals
    (->* [(-> Real Real Real)]
         [(U Real #f) (U Real #f)
          (U Real #f) (U Real #f)
          #:samples Positive-Integer
          #:levels Contour-Levels
          #:colors (Plot-Colors (Listof ivl))
          #:styles (Plot-Brush-Styles (Listof ivl))
          #:contour-colors (Plot-Colors (Listof Real))
          #:contour-widths (Pen-Widths (Listof Real))
          #:contour-styles (Plot-Pen-Styles (Listof Real))
          #:alphas (Alphas (Listof ivl))
          #:label (U String #f)]
         renderer2d))
(define (contour-intervals
         f [x-min #f] [x-max #f] [y-min #f] [y-max #f]
         #:samples [samples (contour-samples)]
         #:levels [levels (contour-levels)]
         #:colors [colors (contour-interval-colors)]
         #:styles [styles (contour-interval-styles)]
         #:contour-colors [contour-colors (contour-colors)]
         #:contour-widths [contour-widths (contour-widths)]
         #:contour-styles [contour-styles (contour-styles)]
         #:alphas [alphas (contour-interval-alphas)]
         #:label [label #f])
  (define fail/pos (make-raise-argument-error 'contour-intervals f x-min x-max y-min y-max))
  (define fail/kw (make-raise-keyword-error 'contour-intervals))
  (cond
    [(and x-min (not (rational? x-min)))  (fail/pos "#f or rational" 2)]
    [(and x-max (not (rational? x-max)))  (fail/pos "#f or rational" 3)]
    [(and y-min (not (rational? y-min)))  (fail/pos "#f or rational" 4)]
    [(and y-max (not (rational? y-max)))  (fail/pos "#f or rational" 5)]
    [(< samples 2)  (fail/kw "Integer >= 2" '#:samples samples)]
    [else
     (define x-ivl (ivl x-min x-max))
     (define y-ivl (ivl y-min y-max))
     (define g (2d-function->sampler f (vector x-ivl y-ivl)))
     (renderer2d (vector x-ivl y-ivl) #f default-ticks-fun
                 (contour-intervals-render-proc g levels samples colors styles
                                                contour-colors contour-widths contour-styles
                                                alphas label))]))