RDG-Networks 0.3.9__py3-none-any.whl → 0.3.10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {RDG_Networks-0.3.9.dist-info → RDG_Networks-0.3.10.dist-info}/METADATA +1 -1
- {RDG_Networks-0.3.9.dist-info → RDG_Networks-0.3.10.dist-info}/RECORD +7 -7
- RDG_networks/thickness/generate_line_segments_thickness.py +5 -0
- {RDG_Networks-0.3.9.dist-info → RDG_Networks-0.3.10.dist-info}/LICENSE.txt +0 -0
- {RDG_Networks-0.3.9.dist-info → RDG_Networks-0.3.10.dist-info}/WHEEL +0 -0
- {RDG_Networks-0.3.9.dist-info → RDG_Networks-0.3.10.dist-info}/entry_points.txt +0 -0
- {RDG_Networks-0.3.9.dist-info → RDG_Networks-0.3.10.dist-info}/top_level.txt +0 -0
@@ -10,14 +10,14 @@ RDG_networks/sample_in_polygon.py,sha256=qpPpW-Da1vK8ZkVWMJ0zBsE8IgyMB619gCdybSk
|
|
10
10
|
RDG_networks/save_to_stl.py,sha256=St8kGw6wl8uOGx8KhrZhBfe89-mOfp5JKhz0dEDBvc0,3894
|
11
11
|
RDG_networks/thickness/Classes.py,sha256=zRhi2TFDwK1oARvAd1HlxnMWeHSj7KKO-u79_r23tXc,8176
|
12
12
|
RDG_networks/thickness/__init__.py,sha256=DzH-mmdrk5e1LL7oq5kg0xaDjtWR7DiCeKKchArHSIs,703
|
13
|
-
RDG_networks/thickness/generate_line_segments_thickness.py,sha256=
|
13
|
+
RDG_networks/thickness/generate_line_segments_thickness.py,sha256=euPMqyHc_RlbFuZO16SSKdZ5NvhKIJA_fOf-rvqv7iA,29214
|
14
14
|
RDG_networks/thickness/generate_line_segments_thickness_correct.py,sha256=rvvqEMGYX7imosKedyXHyTkBV4C2_24K8UxthXDTe7Q,28627
|
15
15
|
RDG_networks/thickness/generate_line_segments_thickness_static.py,sha256=6-2p4GOQFU-dP5Q9nYuaVqeb7wvxk2Fqld3A7cV2pY8,8964
|
16
16
|
RDG_networks/thickness/orientate_network.py,sha256=4jii3y89Jlw1tPmTWoUyrKE7MlHq21JuoiuwnBa1Mkk,15484
|
17
17
|
RDG_networks/thickness/sample_in_polygon.py,sha256=nJ-yqfoCCGfC6_EpGL3L1t1LOYdqWZd-7v5bxy6th34,1849
|
18
|
-
RDG_Networks-0.3.
|
19
|
-
RDG_Networks-0.3.
|
20
|
-
RDG_Networks-0.3.
|
21
|
-
RDG_Networks-0.3.
|
22
|
-
RDG_Networks-0.3.
|
23
|
-
RDG_Networks-0.3.
|
18
|
+
RDG_Networks-0.3.10.dist-info/LICENSE.txt,sha256=BHUkX2GsdTr30sKmVZ1MLGR1njnx17EX_oUuuSVZZPE,598
|
19
|
+
RDG_Networks-0.3.10.dist-info/METADATA,sha256=KmHQ5XO8lsAUBhL7uVOTqtS-wXoh7PL--U4aFyJlv40,2578
|
20
|
+
RDG_Networks-0.3.10.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
21
|
+
RDG_Networks-0.3.10.dist-info/entry_points.txt,sha256=coqOWe9rYYuz9VQvJGFomTzvEP7JY5T9V9gauMhSb_0,986
|
22
|
+
RDG_Networks-0.3.10.dist-info/top_level.txt,sha256=4gUUYafD5Al9V8ZSiViVGYHpRMMCsCBcGgCNodk9Syg,13
|
23
|
+
RDG_Networks-0.3.10.dist-info/RECORD,,
|
@@ -604,6 +604,7 @@ def generate_line_segments_thickness(
|
|
604
604
|
size = len(config)
|
605
605
|
|
606
606
|
jammed = False
|
607
|
+
nucleation_points = []
|
607
608
|
for i in range(size):
|
608
609
|
if config:
|
609
610
|
nucleation_point = config[i]['location']
|
@@ -623,6 +624,8 @@ def generate_line_segments_thickness(
|
|
623
624
|
segments_dict, polygon_arr, segment_thickness_dict, location, angle = output
|
624
625
|
generated_config.append({ 'location': location, 'angle': angle, 'thickness': thickness_arr[i] })
|
625
626
|
|
627
|
+
nucleation_points.append(location)
|
628
|
+
|
626
629
|
else:
|
627
630
|
if config:
|
628
631
|
print('Configuration not possible. Point is skipped.')
|
@@ -639,6 +642,8 @@ def generate_line_segments_thickness(
|
|
639
642
|
'polygon_arr': polygon_arr,
|
640
643
|
'segment_thickness_dict': segment_thickness_dict,
|
641
644
|
'jammed': jammed,
|
645
|
+
'nucleation_points': nucleation_point,
|
646
|
+
'nucleation_angles': angles,
|
642
647
|
'generated_config': generated_config}
|
643
648
|
|
644
649
|
return data_dict
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|