
In an ultimately vain attempt to make plotting fast but still allow plots with bounds that have very few flonums in them, Plot used to try to detect when each axis's bounds had enough flonums in it and switch to flonum-only math. There are two problems with this: * It was trying to determine whether *future computations* would have enough precision, which is very difficult to know for sure, so it only *usually* worked. (Example fail: contour-intervals3d with 0 and +max.0 endpoints. Half the isobands weren't drawn.) * It caused extra conversions between flonums and exact rationals, which are very slow. Here's the new approach: 1. Always send exact rationals to user functions (e.g. the lambda arguments to `function' and `contour-intervals3d'). 2. Immediately convert user-given plot coordinates to exact rationals (if rational; e.g. not +nan.0) 3. Always represent normalized coordinates (e.g. in [0,1]^2 for 2D plots and [-1/2,1/2]^3 for 3D plots) using flonums. 4. Reduce the number of exact operations as much as possible. IOW, plot coordinates, which can be incredibly huge or tiny and don't always fit in flonums, are always exact internally. Normalized, view, and device coordinates, which are used only internally, always have bounds with plenty of flonums in them, so Plot uses flonums. Doing #4 accounts for most of the changes; e.g. to the marching squares and marching cubes implementations, and axial plane clipping. Most plots' speeds seem to be unaffected by the changes. Surfaces and contour intervals are sometimes faster. Isosurfaces are a tad slower in some cases and faster in others. Points are about 50% slower, partly undoing the speedup from a recent commit. Plots with axis transforms can be much slower (4x), when long, straight lines are subdivided many times. Plots with bounds outside flonum range seem to be about 3x faster.
229 lines
9.5 KiB
Racket
229 lines
9.5 KiB
Racket
#lang racket/base
|
|
|
|
(require (for-syntax racket/base)
|
|
racket/match
|
|
racket/list)
|
|
|
|
(provide point-in-bounds?
|
|
point-inside-plane?
|
|
clip-line/bounds
|
|
clip-line/plane
|
|
clip-lines/bounds
|
|
clip-lines/plane
|
|
clip-polygon/bounds
|
|
clip-polygon/plane)
|
|
|
|
;; ===================================================================================================
|
|
;; Basic plane intersection and distance tests
|
|
|
|
;; Need to use this instead of `*' to make axial plane tests as fast as hand-written because the
|
|
;; optimizer doesn't always figure out (* 0 e) = 0, etc.
|
|
(define-syntax (times stx)
|
|
(syntax-case stx ()
|
|
[(_ 0 e) (syntax/loc stx 0)]
|
|
[(_ 1 e) (syntax/loc stx e)]
|
|
[(_ 0.0 e) (syntax/loc stx 0.0)]
|
|
[(_ 1.0 e) (syntax/loc stx (real->double-flonum e))]
|
|
[(_ . es) (syntax/loc stx (* . es))]))
|
|
|
|
(define-syntax-rule (plane-line-intersect a b c x1-stx y1-stx x2-stx y2-stx)
|
|
(let ([x1 x1-stx] [y1 y1-stx] [x2 x2-stx] [y2 y2-stx])
|
|
(let ([dot1 (+ (times a x1) (times b y1))]
|
|
[dot2 (+ (times a x2) (times b y2))])
|
|
(let ([denom (- dot1 dot2)])
|
|
(if (zero? denom)
|
|
(values x2 y2)
|
|
(let ([t (/ (+ dot1 c) denom)])
|
|
(values (+ x1 (* t (- x2 x1))) (+ y1 (* t (- y2 y1))))))))))
|
|
|
|
(define-syntax-rule (plane-point-dist a b c x y)
|
|
(+ (times a x) (times b y) c))
|
|
|
|
;; ===================================================================================================
|
|
;; Points
|
|
|
|
(define (point-in-bounds? v x-min x-max y-min y-max)
|
|
(match-define (vector x y) v)
|
|
(and (<= x-min x x-max) (<= y-min y y-max)))
|
|
|
|
(define (point-inside-plane? v plane)
|
|
(match-define (vector x y) v)
|
|
(match-define (vector a b c) plane)
|
|
(>= (plane-point-dist a b c x y) 0))
|
|
|
|
;; ===================================================================================================
|
|
;; Line clipping
|
|
|
|
(define (clip-line/plane v1 v2 plane)
|
|
(match-define (vector x1 y1) v1)
|
|
(match-define (vector x2 y2) v2)
|
|
(match-define (vector a b c) plane)
|
|
(define v1? (>= (plane-point-dist a b c x1 y1) 0))
|
|
(define v2? (>= (plane-point-dist a b c x2 y2) 0))
|
|
(cond [(and v1? v2?) (values v1 v2)]
|
|
[(not (or v1? v2?)) (values #f #f)]
|
|
[else
|
|
(define-values (x y) (plane-line-intersect a b c x1 y1 x2 y2))
|
|
(if v1? (values v1 (vector x y)) (values (vector x y) v2))]))
|
|
|
|
;; ---------------------------------------------------------------------------------------------------
|
|
;; Clipping inside axial bounding box
|
|
|
|
(define-syntax-rule (make-clip-line/axis a b gte?)
|
|
(λ (val x1 y1 x2 y2)
|
|
(define v1? (gte? (plane-point-dist a b (- val) x1 y1) 0))
|
|
(define v2? (gte? (plane-point-dist a b (- val) x2 y2) 0))
|
|
(cond [(or (and v1? v2?) (not (or v1? v2?))) (values x1 y1 x2 y2)]
|
|
[else
|
|
(define-values (x y) (plane-line-intersect a b (- val) x1 y1 x2 y2))
|
|
(if v1? (values x1 y1 x y) (values x y x2 y2))])))
|
|
|
|
(define clip-line-x-min (make-clip-line/axis 1 0 >=))
|
|
(define clip-line-x-max (make-clip-line/axis 1 0 <=))
|
|
(define clip-line-y-min (make-clip-line/axis 0 1 >=))
|
|
(define clip-line-y-max (make-clip-line/axis 0 1 <=))
|
|
|
|
(define (clip-line/bounds v1 v2 x-min x-max y-min y-max)
|
|
(let/ec return
|
|
(match-define (vector x1 y1) v1)
|
|
(match-define (vector x2 y2) v2)
|
|
;; early accept: both endpoints in bounds
|
|
(when (and (<= x-min x1 x-max) (<= y-min y1 y-max)
|
|
(<= x-min x2 x-max) (<= y-min y2 y-max))
|
|
(return v1 v2))
|
|
;; early reject: both endpoints on the outside of the same plane
|
|
(when (or (and (x1 . < . x-min) (x2 . < . x-min)) (and (x1 . > . x-max) (x2 . > . x-max))
|
|
(and (y1 . < . y-min) (y2 . < . y-min)) (and (y1 . > . y-max) (y2 . > . y-max)))
|
|
(return #f #f))
|
|
(let*-values ([(x1 y1 x2 y2) (clip-line-x-min x-min x1 y1 x2 y2)]
|
|
[(x1 y1 x2 y2) (clip-line-x-max x-max x1 y1 x2 y2)]
|
|
[(x1 y1 x2 y2) (clip-line-y-min y-min x1 y1 x2 y2)]
|
|
[(x1 y1 x2 y2) (clip-line-y-max y-max x1 y1 x2 y2)])
|
|
(values (vector x1 y1) (vector x2 y2)))))
|
|
|
|
;; ===================================================================================================
|
|
;; Connected lines clipping
|
|
|
|
(define-syntax-rule (make-clip-lines/plane a b c gte?)
|
|
(λ (vs)
|
|
(cond
|
|
[(empty? vs) empty]
|
|
[else
|
|
(define v1 (first vs))
|
|
(match-define (vector x1 y1) v1)
|
|
(define v1? (gte? (plane-point-dist a b c x1 y1) 0))
|
|
|
|
(define init-vss (if v1? (list (list v1)) (list empty)))
|
|
|
|
(define-values (vss _x1 _y1 _v1?)
|
|
(for/fold ([vss init-vss] [x1 x1] [y1 y1] [v1? v1?]) ([v2 (in-list (rest vs))])
|
|
(define x2 (vector-ref v2 0))
|
|
(define y2 (vector-ref v2 1))
|
|
(define v2? (gte? (plane-point-dist a b c x2 y2) 0))
|
|
(cond [(and v1? v2?) (values (cons (cons v2 (first vss)) (rest vss)) x2 y2 v2?)]
|
|
[(not (or v1? v2?)) (values vss x2 y2 v2?)]
|
|
[else
|
|
(define-values (x y) (plane-line-intersect a b c x1 y1 x2 y2))
|
|
(if v1?
|
|
(values (cons (cons (vector x y) (first vss)) (rest vss)) x2 y2 v2?)
|
|
(values (cons (list v2 (vector x y)) vss) x2 y2 v2?))])))
|
|
|
|
(filter (compose not empty?) vss)])))
|
|
|
|
(define (clip-lines/plane vs plane)
|
|
(match-define (vector a b c) plane)
|
|
((make-clip-lines/plane a b c >=) vs))
|
|
|
|
;; ---------------------------------------------------------------------------------------------------
|
|
;; Clipping inside axial bounding box
|
|
|
|
;; Early accept: all endpoints in bounds (or empty vs)
|
|
(define (early-accept? vs x-min x-max y-min y-max)
|
|
(andmap (λ (v) (and (<= x-min (vector-ref v 0) x-max)
|
|
(<= y-min (vector-ref v 1) y-max)))
|
|
vs))
|
|
|
|
;; Early reject: all endpoints on the outside of the same plane
|
|
(define (early-reject? vs x-min x-max y-min y-max)
|
|
(or (andmap (λ (v) ((vector-ref v 0) . < . x-min)) vs)
|
|
(andmap (λ (v) ((vector-ref v 0) . > . x-max)) vs)
|
|
(andmap (λ (v) ((vector-ref v 1) . < . y-min)) vs)
|
|
(andmap (λ (v) ((vector-ref v 1) . > . y-max)) vs)))
|
|
|
|
(define-syntax-rule (make-clip-lines/axis a b gte?)
|
|
(λ (val vs)
|
|
((make-clip-lines/plane a b (- val) gte?) vs)))
|
|
|
|
(define clip-lines-x-min (make-clip-lines/axis 1 0 >=))
|
|
(define clip-lines-x-max (make-clip-lines/axis 1 0 <=))
|
|
(define clip-lines-y-min (make-clip-lines/axis 0 1 >=))
|
|
(define clip-lines-y-max (make-clip-lines/axis 0 1 <=))
|
|
|
|
(define (clip-lines/bounds vs x-min x-max y-min y-max)
|
|
(let/ec return
|
|
(when (early-accept? vs x-min x-max y-min y-max) (return (list vs)))
|
|
(when (early-reject? vs x-min x-max y-min y-max) (return empty))
|
|
(let* ([vss (clip-lines-x-min x-min vs)]
|
|
[_ (when (empty? vss) (return empty))]
|
|
[vss (append* (map (λ (vs) (clip-lines-x-max x-max vs)) vss))]
|
|
[_ (when (empty? vss) (return empty))]
|
|
[vss (append* (map (λ (vs) (clip-lines-y-min y-min vs)) vss))]
|
|
[_ (when (empty? vss) (return empty))]
|
|
[vss (append* (map (λ (vs) (clip-lines-y-max y-max vs)) vss))])
|
|
vss)))
|
|
|
|
;; ===================================================================================================
|
|
;; Polygon clipping
|
|
|
|
(define-syntax-rule (make-clip-polygon/plane a b c gte?)
|
|
(λ (vs ls)
|
|
(define v1 (last vs))
|
|
(define x1 (vector-ref v1 0))
|
|
(define y1 (vector-ref v1 1))
|
|
(define v1? (gte? (plane-point-dist a b c x1 y1) 0))
|
|
|
|
(define-values (new-vs new-ls _x1 _y1 _v1?)
|
|
(for/fold ([vs empty] [ls empty] [x1 x1] [y1 y1] [v1? v1?]) ([v2 (in-list vs)]
|
|
[l (in-list ls)])
|
|
(define x2 (vector-ref v2 0))
|
|
(define y2 (vector-ref v2 1))
|
|
(define v2? (gte? (plane-point-dist a b c x2 y2) 0))
|
|
(cond [(and v1? v2?) (values (cons v2 vs) (cons l ls) x2 y2 v2?)]
|
|
[(not (or v1? v2?)) (values vs ls x2 y2 v2?)]
|
|
[else
|
|
(define-values (x y) (plane-line-intersect a b c x1 y1 x2 y2))
|
|
(if v1?
|
|
(values (cons (vector x y) vs) (cons l ls) x2 y2 v2?)
|
|
(values (list* v2 (vector x y) vs) (list* l #t ls) x2 y2 v2?))])))
|
|
|
|
(values (reverse new-vs) (reverse new-ls))))
|
|
|
|
(define (clip-polygon/plane vs ls plane)
|
|
(match-define (vector a b c) plane)
|
|
((make-clip-polygon/plane a b c >=) vs ls))
|
|
|
|
;; ---------------------------------------------------------------------------------------------------
|
|
;; Clipping inside axial bounding box
|
|
|
|
(define-syntax-rule (make-clip-polygon/axis a b gte?)
|
|
(λ (vs ls val)
|
|
((make-clip-polygon/plane a b (- val) gte?) vs ls)))
|
|
|
|
(define clip-polygon-x-min (make-clip-polygon/axis 1 0 >=))
|
|
(define clip-polygon-x-max (make-clip-polygon/axis 1 0 <=))
|
|
(define clip-polygon-y-min (make-clip-polygon/axis 0 1 >=))
|
|
(define clip-polygon-y-max (make-clip-polygon/axis 0 1 <=))
|
|
|
|
(define (clip-polygon/bounds vs ls x-min x-max y-min y-max)
|
|
(let/ec return
|
|
(when (early-accept? vs x-min x-max y-min y-max) (return vs ls))
|
|
(when (early-reject? vs x-min x-max y-min y-max) (return empty empty))
|
|
(let*-values ([(vs ls) (clip-polygon-x-min vs ls x-min)]
|
|
[(_) (when (empty? vs) (return empty empty))]
|
|
[(vs ls) (clip-polygon-x-max vs ls x-max)]
|
|
[(_) (when (empty? vs) (return empty empty))]
|
|
[(vs ls) (clip-polygon-y-min vs ls y-min)]
|
|
[(_) (when (empty? vs) (return empty empty))]
|
|
[(vs ls) (clip-polygon-y-max vs ls y-max)])
|
|
(values vs ls))))
|