blob: aa96ba871dca11e2bb74f4f322444f5d4dbe6dc6 (
plain)
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
|
;;; Chickadee Game Toolkit
;;; Copyright © 2016 David Thompson <dthompson2@worcester.edu>
;;;
;;; Licensed under the Apache License, Version 2.0 (the "License");
;;; you may not use this file except in compliance with the License.
;;; You may obtain a copy of the License at
;;;
;;; http://www.apache.org/licenses/LICENSE-2.0
;;;
;;; Unless required by applicable law or agreed to in writing, software
;;; distributed under the License is distributed on an "AS IS" BASIS,
;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;;; See the License for the specific language governing permissions and
;;; limitations under the License.
(define-module (chickadee math)
#:export (pi
pi/2
tau
cotan
clamp
min
max
lerp
degrees->radians
radians->degrees)
#:replace (min max))
(define pi 3.1415926535897932)
(define pi/2 1.5707963267948966)
(define tau 6.283185307179586) ;; AKA 2pi
(define-inlinable (cotan z)
"Return the cotangent of Z."
(/ 1.0 (tan z)))
(define-inlinable (clamp min max x)
"Restrict X to the range defined by MIN and MAX. Assumes that MIN is
actually less than MAX."
(cond ((< x min) min)
((> x max) max)
(else x)))
;; Some macro trickery to inline calls to min/max with 2 arguments.
;; We often call min/max on floating point values, so inlining such
;; calls allows the compiler to unbox many of these operations,
;; reducing allocation.
(define-syntax min
(syntax-rules ()
((_ a b)
(if (< a b) a b))
((_ a b ...)
(let ((m (min b ...)))
(if (< a m) a m)))))
(define-syntax max
(syntax-rules ()
((_ a b) (if (> a b) a b))
((_ a b ...)
(let ((m (max b ...)))
(if (> a m) a m)))))
(define-inlinable (lerp start end alpha)
(+ (* start (- 1.0 alpha))
(* end alpha)))
(define-inlinable (degrees->radians degrees)
(/ (* pi degrees) 180.0))
(define-inlinable (radians->degrees radians)
(/ (* 180.0 radians) pi))
|