aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw27@cam.ac.uk>2008-11-10 16:28:03 +0000
committerThomas White <taw27@cam.ac.uk>2008-11-10 16:28:03 +0000
commit65ef6d2bdb12a2953aa36cdf522a9df05e6c0e0e (patch)
treea151d98314f9bb9c8e8e03ddba10f5f2a2da8c54
parent60e003f6f6007cab0a99164080637dcbe2fc9bf8 (diff)
Line wrapiping in reflections.c
-rw-r--r--src/reflections.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/reflections.c b/src/reflections.c
index 4809438..a589231 100644
--- a/src/reflections.c
+++ b/src/reflections.c
@@ -168,7 +168,8 @@ Reflection *reflectionlist_find_nearest(ReflectionList *reflectionlist, double x
}
-Reflection *reflectionlist_find_nearest_longer_unknown(ReflectionList *reflectionlist, double x, double y, double z, double min_distance) {
+Reflection *reflectionlist_find_nearest_longer_unknown(ReflectionList *reflectionlist,
+ double x, double y, double z, double min_distance) {
double max = +INFINITY;
Reflection *reflection;
@@ -191,7 +192,8 @@ Reflection *reflectionlist_find_nearest_longer_unknown(ReflectionList *reflectio
}
-Reflection *reflectionlist_find_nearest_type(ReflectionList *reflectionlist, double x, double y, double z, ReflectionType type) {
+Reflection *reflectionlist_find_nearest_type(ReflectionList *reflectionlist, double x, double y, double z,
+ ReflectionType type) {
double max = +INFINITY;
Reflection *reflection;