-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathboolean_clockwise.dart
47 lines (44 loc) · 1.09 KB
/
boolean_clockwise.dart
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
import 'package:turf/src/invariant.dart';
import '../../helpers.dart';
/// Takes a ring and return [true] or [false] whether or not the ring is clockwise
/// or counter-clockwise.
/// Takes a [Feature<LineString>] or[LineString] or a [List<Position>] to be
/// evaluated.
/// example:
/// ```dart
/// var clockwiseRing = LineString(
/// coordinates: [
/// Position.of([0, 0]),
/// Position.of([1, 1]),
/// Position.of([1, 0]),
/// Position.of([0, 0])
/// ],
/// );
/// var counterClockwiseRing = LineString(
/// coordinates: [
/// Position.of([0, 0]),
/// Position.of([1, 0]),
/// Position.of([1, 1]),
/// Position.of([0, 0])
/// ],
/// );
///
/// booleanClockwise(clockwiseRing);
/// //=true
/// booleanClockwise(counterClockwiseRing);
/// //=false
/// ```
bool booleanClockwise(LineString line) {
var ring = getCoords(line) as List<Position>;
num sum = 0;
int i = 1;
Position prev;
Position? cur;
while (i < ring.length) {
prev = cur ?? ring[0];
cur = ring[i];
sum += (cur[0]! - prev[0]!) * (cur[1]! + prev[1]!);
i++;
}
return sum > 0;
}