diff options
author | pacien | 2017-12-29 03:30:26 +0100 |
---|---|---|
committer | pacien | 2017-12-29 03:30:26 +0100 |
commit | 4b30bfee527edd88e035b93c1230ddf2101291f6 (patch) | |
tree | 51bcbfaf63b3a5eab19185236618067d6662f214 | |
parent | a20e595f4a5b63e613a90fab3616b59646df051f (diff) | |
download | morpher-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.h | 2 |
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 | */ |
15 | typedef int32_t IntVector; | 15 | typedef int64_t IntVector; |
16 | 16 | ||
17 | /** | 17 | /** |
18 | * Type: RealVector | 18 | * Type: RealVector |