summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2017-12-29 03:30:26 +0100
committerpacien2017-12-29 03:30:26 +0100
commit4b30bfee527edd88e035b93c1230ddf2101291f6 (patch)
tree51bcbfaf63b3a5eab19185236618067d6662f214
parenta20e595f4a5b63e613a90fab3616b59646df051f (diff)
downloadmorpher-4b30bfee527edd88e035b93c1230ddf2101291f6.tar.gz
Use 64 bits integers (avoiding overflows when computing the Delaunay criteria)
Signed-off-by: pacien <pacien.trangirard@pacien.net>
-rw-r--r--include/common/geom.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/common/geom.h b/include/common/geom.h
index 334e95c..66e6c08 100644
--- a/include/common/geom.h
+++ b/include/common/geom.h
@@ -12,7 +12,7 @@
12 * Type: IntVector 12 * Type: IntVector
13 * An abstract 1-D vector. 13 * An abstract 1-D vector.
14 */ 14 */
15typedef int32_t IntVector; 15typedef int64_t IntVector;
16 16
17/** 17/**
18 * Type: RealVector 18 * Type: RealVector