forked from SkienaBooks/Algorithm-Design-Manual-Programs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeotest.c
92 lines (70 loc) · 2.25 KB
/
geotest.c
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
/* geotest.c
Driver program for geometry routines
by: Steven Skiena
begun: July 23, 2002
*/
/*
Copyright 2003 by Steven S. Skiena; all rights reserved.
Permission is granted for use in non-commerical applications
provided this copyright notice remains intact and unchanged.
This program appears in my book:
"Programming Challenges: The Programming Contest Training Manual"
by Steven Skiena and Miguel Revilla, Springer-Verlag, New York 2003.
See our website www.programming-challenges.com for additional information.
This book can be ordered from Amazon.com at
http://www.amazon.com/exec/obidos/ASIN/0387001638/thealgorithmrepo/
*/
#include <math.h>
#include <stdio.h>
#include "bool.h"
#include "geometry.h"
int main(void) {
point p1, p2, q1, q2, i;
line l1, l2, l3, l4;
while (scanf("%lf %lf", &p1[X], &p1[Y]) != EOF) {
scanf("%lf %lf", &p2[X], &p2[Y]);
scanf("%lf %lf", &q1[X], &q1[Y]);
scanf("%lf %lf", &q2[X], &q2[Y]);
print_point(p1);
print_point(p2);
print_point(q1);
print_point(q2);
points_to_line(p1, p2, &l1);
points_to_line(q1, q2, &l2);
print_line(l1);
print_line(l2);
printf("slope and line tests\n");
point_and_slope_to_line(p1, -l1.a, &l3);
print_line(l3);
point_and_slope_to_line(p2, -l1.a, &l3);
print_line(l3);
point_and_slope_to_line(q1, -l2.a, &l3);
print_line(l3);
point_and_slope_to_line(q2, -l2.a, &l3);
print_line(l3);
printf("parallel lines test\n");
printf("%d\n", parallelQ(l1, l2));
printf("intersection point\n");
intersection_point(l1, l2, i);
print_point(i);
printf("closest point\n");
closest_point(p1, l1, i);
print_point(i);
closest_point(p2, l1, i);
print_point(i);
closest_point(q1, l1, i);
print_point(i);
closest_point(q2, l1, i);
print_point(i);
closest_point(p1, l2, i);
print_point(i);
closest_point(p2, l2, i);
print_point(i);
closest_point(q1, l2, i);
print_point(i);
closest_point(q2, l2, i);
print_point(i);
printf("--------------------------------\n");
}
return 0;
}