]> git.jsancho.org Git - dungeon-master.git/blob - tests/triangle.scm
Test name
[dungeon-master.git] / tests / triangle.scm
1 ;;; Dungeon Master --- Adventure generator for GNU Guile
2 ;;; Copyright © 2019 Javier Sancho <jsf@jsancho.org>
3 ;;;
4 ;;; Dungeon Master is free software; you can redistribute it and/or modify it
5 ;;; under the terms of the GNU General Public License as published by
6 ;;; the Free Software Foundation; either version 3 of the License, or
7 ;;; (at your option) any later version.
8 ;;;
9 ;;; Dungeon Master is distributed in the hope that it will be useful, but
10 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
11 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 ;;; General Public License for more details.
13 ;;;
14 ;;; You should have received a copy of the GNU General Public License
15 ;;; along with Haunt.  If not, see <http://www.gnu.org/licenses/>.
16
17
18 (define-module (test-triangle)
19   #:use-module (srfi srfi-64)
20   #:use-module (dungeon-master geom point)
21   #:use-module (dungeon-master geom triangle))
22
23 (test-begin "triangle")
24
25 (define p1 (make-point 0 0))
26 (define p2 (make-point 0 10))
27 (define p3 (make-point 10 0))
28 (define tr (make-triangle p1 p2 p3))
29
30 (test-equal
31  "circumcenter"
32  (triangle-center tr)
33  (make-point 5 5))
34
35 (test-assert
36  "radius"
37  (= (triangle-radius tr)
38     (points-distance (triangle-center tr) p1)
39     (points-distance (triangle-center tr) p2)
40     (points-distance (triangle-center tr) p3)))
41
42 (test-assert
43  "has edge"
44  (and (triangle-has-edge tr p1 p2)
45       (triangle-has-edge tr p2 p1)
46       (triangle-has-edge tr p3 p1)))
47
48 (test-end)
49
50 (exit (zero? (test-runner-fail-count (test-runner-current))))