RDG-Networks 0.1.7__tar.gz → 0.1.8__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: RDG-Networks
3
- Version: 0.1.7
3
+ Version: 0.1.8
4
4
  Summary: Most of the code from the RDG Networks project
5
5
  Home-page: https://github.com/NiekMooij/RDG_networks
6
6
  Author: Niek Mooij
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: RDG-Networks
3
- Version: 0.1.7
3
+ Version: 0.1.8
4
4
  Summary: Most of the code from the RDG Networks project
5
5
  Home-page: https://github.com/NiekMooij/RDG_networks
6
6
  Author: Niek Mooij
@@ -54,9 +54,9 @@ def get_intersection_segments(line_segments: List[LineSegment]) -> List[LineSegm
54
54
  # Order intersection points
55
55
  ordered_intersection_points = {}
56
56
  for segment_id, points in intersection_points.items():
57
-
57
+
58
58
  ordered_points = order_points(points, points[0])
59
-
59
+ ordered_points = list(set(ordered_points))
60
60
  ordered_intersection_points[segment_id] = ordered_points
61
61
 
62
62
  # Generate intersection segments
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='RDG-Networks',
5
- version='0.1.7',
5
+ version='0.1.8',
6
6
  author='Niek Mooij',
7
7
  author_email='mooij.niek@gmail.com',
8
8
  description='Most of the code from the RDG Networks project',
File without changes
File without changes
File without changes