topologicpy 0.7.37__py3-none-any.whl → 0.7.39__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.
- topologicpy/ANN.py +2 -18
- topologicpy/Face.py +4 -8
- topologicpy/Graph.py +34 -13
- topologicpy/Grid.py +0 -2
- topologicpy/Helper.py +0 -34
- topologicpy/Neo4j.py +5 -3
- topologicpy/Polyskel.py +5 -1
- topologicpy/PyG.py +2067 -0
- topologicpy/Shell.py +2 -2
- topologicpy/Sun.py +26 -36
- topologicpy/Topology.py +0 -22
- topologicpy/Wire.py +3 -7
- topologicpy/version.py +1 -1
- {topologicpy-0.7.37.dist-info → topologicpy-0.7.39.dist-info}/METADATA +1 -1
- {topologicpy-0.7.37.dist-info → topologicpy-0.7.39.dist-info}/RECORD +18 -17
- {topologicpy-0.7.37.dist-info → topologicpy-0.7.39.dist-info}/WHEEL +1 -1
- {topologicpy-0.7.37.dist-info → topologicpy-0.7.39.dist-info}/LICENSE +0 -0
- {topologicpy-0.7.37.dist-info → topologicpy-0.7.39.dist-info}/top_level.txt +0 -0
topologicpy/Shell.py
CHANGED
topologicpy/Sun.py
CHANGED
@@ -132,7 +132,6 @@ class Sun():
|
|
132
132
|
-------
|
133
133
|
datetime
|
134
134
|
The datetime of the summer solstice
|
135
|
-
|
136
135
|
"""
|
137
136
|
import os
|
138
137
|
import warnings
|
@@ -173,7 +172,6 @@ class Sun():
|
|
173
172
|
-------
|
174
173
|
datetime
|
175
174
|
The datetime of the summer solstice
|
176
|
-
|
177
175
|
"""
|
178
176
|
import os
|
179
177
|
import warnings
|
@@ -216,7 +214,6 @@ class Sun():
|
|
216
214
|
-------
|
217
215
|
float
|
218
216
|
The azimuth angle.
|
219
|
-
|
220
217
|
"""
|
221
218
|
import os
|
222
219
|
import warnings
|
@@ -263,7 +260,6 @@ class Sun():
|
|
263
260
|
-------
|
264
261
|
float
|
265
262
|
The altitude angle.
|
266
|
-
|
267
263
|
"""
|
268
264
|
import os
|
269
265
|
import warnings
|
@@ -310,8 +306,8 @@ class Sun():
|
|
310
306
|
-------
|
311
307
|
datetime
|
312
308
|
The Sunrise datetime.
|
313
|
-
|
314
309
|
"""
|
310
|
+
|
315
311
|
import os
|
316
312
|
import warnings
|
317
313
|
try:
|
@@ -355,8 +351,8 @@ class Sun():
|
|
355
351
|
-------
|
356
352
|
datetime
|
357
353
|
The Sunset datetime.
|
358
|
-
|
359
354
|
"""
|
355
|
+
|
360
356
|
import os
|
361
357
|
import warnings
|
362
358
|
try:
|
@@ -383,7 +379,7 @@ class Sun():
|
|
383
379
|
return sunset
|
384
380
|
|
385
381
|
@staticmethod
|
386
|
-
def Vector(latitude
|
382
|
+
def Vector(latitude, longitude, date, north=0):
|
387
383
|
"""
|
388
384
|
Returns the Sun as a vector.
|
389
385
|
|
@@ -402,12 +398,11 @@ class Sun():
|
|
402
398
|
-------
|
403
399
|
list
|
404
400
|
The sun vector pointing from the location of the sun towards the origin.
|
405
|
-
|
406
401
|
"""
|
407
402
|
from topologicpy.Vector import Vector
|
408
403
|
azimuth = Sun.Azimuth(latitude=latitude, longitude=longitude, date=date)
|
409
404
|
altitude = Sun.Altitude(latitude=latitude, longitude=longitude, date=date)
|
410
|
-
return Vector.ByAzimuthAltitude(azimuth=azimuth, altitude=altitude, north=north, reverse=True
|
405
|
+
return Vector.ByAzimuthAltitude(azimuth=azimuth, altitude=altitude, north=north, reverse=True)
|
411
406
|
|
412
407
|
@staticmethod
|
413
408
|
def Position(latitude, longitude, date, origin=None, radius=0.5, north=0, mantissa=6):
|
@@ -422,7 +417,7 @@ class Sun():
|
|
422
417
|
The input longitude. See https://en.wikipedia.org/wiki/Longitude.
|
423
418
|
date : datetime
|
424
419
|
The input datetime.
|
425
|
-
origin :
|
420
|
+
origin : topologic.Vertex , optional
|
426
421
|
The desired origin of the world. If set to None, the origin will be set to (0,0,0). The default is None.
|
427
422
|
radius : float , optional
|
428
423
|
The desired radius of the sun orbit. The default is 0.5.
|
@@ -431,14 +426,13 @@ class Sun():
|
|
431
426
|
mantissa : int , optional
|
432
427
|
The desired length of the mantissa. The default is 6.
|
433
428
|
|
429
|
+
|
434
430
|
Returns
|
435
431
|
-------
|
436
|
-
|
432
|
+
topologic.Vertex
|
437
433
|
The sun represented as a vertex.
|
438
|
-
|
439
434
|
"""
|
440
435
|
from topologicpy.Vertex import Vertex
|
441
|
-
|
442
436
|
sun_v = Sun.Vertex(latitude=latitude, longitude=longitude, date=date, origin=origin, radius=radius, north=north)
|
443
437
|
return Vertex.Coordinates(sun_v, mantissa=mantissa)
|
444
438
|
|
@@ -455,7 +449,7 @@ class Sun():
|
|
455
449
|
The input longitude. See https://en.wikipedia.org/wiki/Longitude.
|
456
450
|
date : datetime
|
457
451
|
The input datetime.
|
458
|
-
origin :
|
452
|
+
origin : topologic.Vertex , optional
|
459
453
|
The desired origin of the world. If set to None, the origin will be set to (0,0,0). The default is None.
|
460
454
|
radius : float , optional
|
461
455
|
The desired radius of the sun orbit. The default is 0.5.
|
@@ -464,14 +458,14 @@ class Sun():
|
|
464
458
|
|
465
459
|
Returns
|
466
460
|
-------
|
467
|
-
|
461
|
+
topologic.Vertex
|
468
462
|
The sun represented as a vertex.
|
469
463
|
"""
|
470
464
|
from topologicpy.Vertex import Vertex
|
471
465
|
from topologicpy.Topology import Topology
|
472
466
|
from topologicpy.Vector import Vector
|
473
467
|
|
474
|
-
if
|
468
|
+
if origin == None:
|
475
469
|
origin = Vertex.Origin()
|
476
470
|
vector = Vector.Reverse(Sun.Vector(latitude=latitude, longitude=longitude, date=date, north=north))
|
477
471
|
sun_v = Topology.TranslateByDirectionDistance(origin, direction=vector, distance=radius)
|
@@ -490,7 +484,7 @@ class Sun():
|
|
490
484
|
The input longitude. See https://en.wikipedia.org/wiki/Longitude.
|
491
485
|
date : datetime
|
492
486
|
The input datetime.
|
493
|
-
origin :
|
487
|
+
origin : topologic.Vertex , optional
|
494
488
|
The desired origin of the world. If set to None, the origin will be set to (0,0,0). The default is None.
|
495
489
|
radius : float , optional
|
496
490
|
The desired radius of the sun orbit. The default is 0.5.
|
@@ -499,7 +493,7 @@ class Sun():
|
|
499
493
|
|
500
494
|
Returns
|
501
495
|
-------
|
502
|
-
|
496
|
+
topologic.Edge
|
503
497
|
The sun represented as an edge pointing from the location of the sun towards the origin.
|
504
498
|
"""
|
505
499
|
from topologicpy.Vertex import Vertex
|
@@ -507,7 +501,7 @@ class Sun():
|
|
507
501
|
from topologicpy.Topology import Topology
|
508
502
|
from topologicpy.Vector import Vector
|
509
503
|
|
510
|
-
if
|
504
|
+
if origin == None:
|
511
505
|
origin = Vertex.Origin()
|
512
506
|
vector = Vector.Reverse(Sun.Vector(latitude=latitude, longitude=longitude, date=date, north=north))
|
513
507
|
sun_v = Topology.TranslateByDirectionDistance(origin, direction=vector, distance=radius)
|
@@ -533,7 +527,7 @@ class Sun():
|
|
533
527
|
The desired end time to compute the sun location. If set to None, Sun.Sunset is used. The default is None.
|
534
528
|
interval : int , optional
|
535
529
|
The interval in minutes to compute the sun location. The default is 60.
|
536
|
-
origin :
|
530
|
+
origin : topologic.Vertex , optional
|
537
531
|
The desired origin of the world. If set to None, the origin will be set to (0,0,0). The default is None.
|
538
532
|
radius : float , optional
|
539
533
|
The desired radius of the sun orbit. The default is 0.5.
|
@@ -577,7 +571,7 @@ class Sun():
|
|
577
571
|
The desired end time to compute the sun location. If set to None, Sun.Sunset is used. The default is None.
|
578
572
|
interval : int , optional
|
579
573
|
The interval in minutes to compute the sun location. The default is 60.
|
580
|
-
origin :
|
574
|
+
origin : topologic.Vertex , optional
|
581
575
|
The desired origin of the world. If set to None, the origin will be set to (0,0,0). The default is None.
|
582
576
|
radius : float , optional
|
583
577
|
The desired radius of the sun orbit. The default is 0.5.
|
@@ -589,16 +583,14 @@ class Sun():
|
|
589
583
|
|
590
584
|
Returns
|
591
585
|
-------
|
592
|
-
|
586
|
+
topologic.Wire
|
593
587
|
The sun path represented as a wire.
|
594
|
-
|
595
588
|
"""
|
596
589
|
from topologicpy.Vertex import Vertex
|
597
590
|
from topologicpy.Wire import Wire
|
598
|
-
from topologicpy.Dictionary import Dictionary
|
599
591
|
from topologicpy.Topology import Topology
|
600
|
-
|
601
|
-
if
|
592
|
+
from topologicpy.Dictionary import Dictionary
|
593
|
+
if origin == None:
|
602
594
|
origin = Vertex.Origin()
|
603
595
|
if startTime == None:
|
604
596
|
startTime = Sun.Sunrise(latitude=latitude, longitude=longitude, date=date)
|
@@ -641,7 +633,7 @@ class Sun():
|
|
641
633
|
The desired end day to compute the sun location. The default is 365.
|
642
634
|
interval : int , optional
|
643
635
|
The interval in days to compute the sun location. The default is 5.
|
644
|
-
origin :
|
636
|
+
origin : topologic.Vertex , optional
|
645
637
|
The desired origin of the world. If set to None, the origin will be set to (0,0,0). The default is None.
|
646
638
|
radius : float , optional
|
647
639
|
The desired radius of the sun orbit. The default is 0.5.
|
@@ -652,11 +644,9 @@ class Sun():
|
|
652
644
|
-------
|
653
645
|
list
|
654
646
|
The sun locations represented as a list of vertices.
|
655
|
-
|
656
647
|
"""
|
657
648
|
from datetime import datetime
|
658
649
|
from datetime import timedelta
|
659
|
-
|
660
650
|
def day_of_year_to_datetime(year, day_of_year):
|
661
651
|
# Construct a datetime object for the first day of the year
|
662
652
|
base_date = datetime(year, 1, 1)
|
@@ -694,7 +684,7 @@ class Sun():
|
|
694
684
|
The desired end day of the year to compute the sun location. The default is 365.
|
695
685
|
interval : int , optional
|
696
686
|
The interval in days to compute the sun location. The default is 5.
|
697
|
-
origin :
|
687
|
+
origin : topologic.Vertex , optional
|
698
688
|
The desired origin of the world. If set to None, the origin will be set to (0,0,0). The default is None.
|
699
689
|
radius : float , optional
|
700
690
|
The desired radius of the sun orbit. The default is 0.5.
|
@@ -706,13 +696,13 @@ class Sun():
|
|
706
696
|
|
707
697
|
Returns
|
708
698
|
-------
|
709
|
-
|
699
|
+
topologic.Wire
|
710
700
|
The sun path represented as a topologic wire.
|
711
|
-
|
712
701
|
"""
|
702
|
+
|
713
703
|
from topologicpy.Wire import Wire
|
714
|
-
from topologicpy.Dictionary import Dictionary
|
715
704
|
from topologicpy.Topology import Topology
|
705
|
+
from topologicpy.Dictionary import Dictionary
|
716
706
|
|
717
707
|
vertices = Sun.VerticesByHour(latitude=latitude, longitude=longitude, hour=hour,
|
718
708
|
startDay=startDay, endDay=endDay, interval=interval,
|
@@ -749,7 +739,7 @@ class Sun():
|
|
749
739
|
The interval in minutes to compute the sun location for the date path. The default is 30.
|
750
740
|
dayInterval : int , optional
|
751
741
|
The interval in days for the hourly path to compute the sun location. The default is 15.
|
752
|
-
origin :
|
742
|
+
origin : topologic.Vertex , optional
|
753
743
|
The desired origin of the world. If set to None, the origin will be set to (0,0,0). The default is None.
|
754
744
|
radius : float , optional
|
755
745
|
The desired radius of the sun orbit. The default is 0.5.
|
@@ -776,8 +766,8 @@ class Sun():
|
|
776
766
|
- 'center' : This is a cross-shape (wire) at the center of the diagram. This is included only if the compass option is set to True.
|
777
767
|
- 'ground' : This is a circle (face) on the ground. It is made of 36 sides. This is included only if
|
778
768
|
the compass option is set to False.
|
779
|
-
|
780
769
|
"""
|
770
|
+
|
781
771
|
from datetime import datetime
|
782
772
|
from datetime import timedelta
|
783
773
|
from topologicpy.Vertex import Vertex
|
@@ -789,7 +779,7 @@ class Sun():
|
|
789
779
|
from topologicpy.Topology import Topology
|
790
780
|
from topologicpy.Dictionary import Dictionary
|
791
781
|
|
792
|
-
if
|
782
|
+
if origin == None:
|
793
783
|
origin = Vertex.Origin()
|
794
784
|
|
795
785
|
cutter = Cell.Prism(origin=origin, width=radius*4, length=radius*4, height=radius*2)
|
topologicpy/Topology.py
CHANGED
@@ -1594,12 +1594,6 @@ class Topology():
|
|
1594
1594
|
----------
|
1595
1595
|
path :str
|
1596
1596
|
The path to the .bim file.
|
1597
|
-
path : str
|
1598
|
-
The input file path.
|
1599
|
-
overwrite : bool , optional
|
1600
|
-
If set to True the output file will overwrite any pre-existing file. Otherwise, it won't. The default is False.
|
1601
|
-
version : str , optional
|
1602
|
-
The desired version number for the BIM file. The default is "1.0.0".
|
1603
1597
|
guidKey : str , optional
|
1604
1598
|
The key to use to store the the guid of the topology. The default is "guid".
|
1605
1599
|
colorKey : str , optional
|
@@ -1658,12 +1652,6 @@ class Topology():
|
|
1658
1652
|
----------
|
1659
1653
|
string :str
|
1660
1654
|
The input dotbim str (in JSON format).
|
1661
|
-
path : str
|
1662
|
-
The input file path.
|
1663
|
-
overwrite : bool , optional
|
1664
|
-
If set to True the output file will overwrite any pre-existing file. Otherwise, it won't. The default is False.
|
1665
|
-
version : str , optional
|
1666
|
-
The desired version number for the BIM file. The default is "1.0.0".
|
1667
1655
|
guidKey : str , optional
|
1668
1656
|
The key to use to store the the guid of the topology. The default is "guid".
|
1669
1657
|
colorKey : str , optional
|
@@ -1754,12 +1742,6 @@ class Topology():
|
|
1754
1742
|
----------
|
1755
1743
|
file : dotbimpy.file.File
|
1756
1744
|
The input dotbim file.
|
1757
|
-
path : str
|
1758
|
-
The input file path.
|
1759
|
-
overwrite : bool , optional
|
1760
|
-
If set to True the output file will overwrite any pre-existing file. Otherwise, it won't. The default is False.
|
1761
|
-
version : str , optional
|
1762
|
-
The desired version number for the BIM file. The default is "1.0.0".
|
1763
1745
|
guidKey : str , optional
|
1764
1746
|
The key to use to store the the guid of the topology. The default is "guid".
|
1765
1747
|
colorKey : str , optional
|
@@ -4988,8 +4970,6 @@ class Topology():
|
|
4988
4970
|
----------
|
4989
4971
|
topologies : list or comma separated topologies
|
4990
4972
|
The input list of topologies.
|
4991
|
-
path : str
|
4992
|
-
The input file path.
|
4993
4973
|
nameKey : str , optional
|
4994
4974
|
The topology dictionary key under which to find the name of the topology. The default is "name".
|
4995
4975
|
colorKey : str, optional
|
@@ -5021,8 +5001,6 @@ class Topology():
|
|
5021
5001
|
The desired length of the mantissa. The default is 6.
|
5022
5002
|
tolerance : float , optional
|
5023
5003
|
The desired tolerance. The default is 0.0001.
|
5024
|
-
overwrite : bool , optional
|
5025
|
-
If set to True the ouptut file will overwrite any pre-existing file. Otherwise, it won't. The default is False.
|
5026
5004
|
|
5027
5005
|
Returns
|
5028
5006
|
-------
|
topologicpy/Wire.py
CHANGED
@@ -602,7 +602,7 @@ class Wire():
|
|
602
602
|
radius : float , optional
|
603
603
|
The radius of the circle. The default is 0.5.
|
604
604
|
sides : int , optional
|
605
|
-
The number of sides of the circle. The default is 16.
|
605
|
+
The desired number of sides of the circle. The default is 16.
|
606
606
|
fromAngle : float , optional
|
607
607
|
The angle in degrees from which to start creating the arc of the circle. The default is 0.
|
608
608
|
toAngle : float , optional
|
@@ -3019,19 +3019,15 @@ class Wire():
|
|
3019
3019
|
origin : topologic_core.Vertex , optional
|
3020
3020
|
The location of the origin of the squircle. The default is None which results in the squircle being placed at (0, 0, 0).
|
3021
3021
|
radius : float , optional
|
3022
|
-
The radius of the squircle. The default is 0.5.
|
3022
|
+
The desired radius of the squircle. The default is 0.5.
|
3023
3023
|
sides : int , optional
|
3024
|
-
The number of sides of the squircle. The default is 121.
|
3024
|
+
The desired number of sides of the squircle. The default is 121.
|
3025
3025
|
a : float , optional
|
3026
3026
|
The "a" factor affects the x position of the points to interpolate between a circle and a square.
|
3027
3027
|
A value of 1 will create a circle. Higher values will create a more square-like shape. The default is 2.0.
|
3028
3028
|
b : float , optional
|
3029
3029
|
The "b" factor affects the y position of the points to interpolate between a circle and a square.
|
3030
3030
|
A value of 1 will create a circle. Higher values will create a more square-like shape. The default is 2.0.
|
3031
|
-
radius : float , optional
|
3032
|
-
The desired radius of the squircle. The default is 0.5.
|
3033
|
-
sides : int , optional
|
3034
|
-
The desired number of sides for the squircle. The default is 100.
|
3035
3031
|
direction : list , optional
|
3036
3032
|
The vector representing the up direction of the circle. The default is [0, 0, 1].
|
3037
3033
|
placement : str , optional
|
topologicpy/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = '0.7.
|
1
|
+
__version__ = '0.7.39'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: topologicpy
|
3
|
-
Version: 0.7.
|
3
|
+
Version: 0.7.39
|
4
4
|
Summary: An Advanced Spatial Modelling and Analysis Software Library for Architecture, Engineering, and Construction.
|
5
5
|
Author-email: Wassim Jabi <wassim.jabi@gmail.com>
|
6
6
|
License: MIT License
|
@@ -1,4 +1,4 @@
|
|
1
|
-
topologicpy/ANN.py,sha256=
|
1
|
+
topologicpy/ANN.py,sha256=XAuUjNvDRK1hhXfo82S-zXmnAPZGEdHJMRdfpu0aJ8I,47901
|
2
2
|
topologicpy/Aperture.py,sha256=p9pUzTQSBWoUaDiug1V1R1hnEIEwYSXFg2t7iRAmNRY,2723
|
3
3
|
topologicpy/Cell.py,sha256=c6LeEY6-gMNByIHGC_rb2wm9ogg93VhwYK3zJ8IB78U,99798
|
4
4
|
topologicpy/CellComplex.py,sha256=x474N-lo1krpdIGrWRAFRdDup5a_1V-mLORTS6ZGZ7M,48227
|
@@ -9,26 +9,27 @@ topologicpy/DGL.py,sha256=Dd6O08D-vSxpjHYgKm45JpKiaeGvWlg1BRMzYMAXGNc,138991
|
|
9
9
|
topologicpy/Dictionary.py,sha256=KqJ29YyE23Y3Xc6XmKLSCZXRfBvm-OEOxlMZ4dt-rfM,27094
|
10
10
|
topologicpy/Edge.py,sha256=vhYHkobSLGSWV-oe2oJFFDobqFToDyb7s71yQ840AAA,65166
|
11
11
|
topologicpy/EnergyModel.py,sha256=ni0H1JgvLl1-q90yK9Sm1qj5P1fTuidlimEIcwuj6qE,53287
|
12
|
-
topologicpy/Face.py,sha256=
|
13
|
-
topologicpy/Graph.py,sha256=
|
14
|
-
topologicpy/Grid.py,sha256=
|
15
|
-
topologicpy/Helper.py,sha256=
|
12
|
+
topologicpy/Face.py,sha256=tY7H4OJDJeW1Lz2xk8-Jb67IUunPN7M0Y70-2DEOKFc,115278
|
13
|
+
topologicpy/Graph.py,sha256=zh5UjwMi702jESXFk9ef9Wpn95A9XtgdxTm49HcqRws,393623
|
14
|
+
topologicpy/Grid.py,sha256=3-sn7CHWGcXk18XCnHjsUttNJTWwmN63g_Insj__p04,18218
|
15
|
+
topologicpy/Helper.py,sha256=i-AfI29NMsZXBaymjilfvxQbuS3wpYbpPw4RWu1YCHs,16358
|
16
16
|
topologicpy/Honeybee.py,sha256=vcBECJlgWVjNNdD9ZmjNik_pA1Y_ZNoOorsQb2CiyGA,21965
|
17
17
|
topologicpy/Matrix.py,sha256=umgR7An919-wGInXJ1wpqnoQ2jCPdyMe2rcWTZ16upk,8079
|
18
|
-
topologicpy/Neo4j.py,sha256=
|
18
|
+
topologicpy/Neo4j.py,sha256=YvtF7RYUMATEZ8iHwFwK_MOxEDyARby2DTI2CCK6-cI,19694
|
19
19
|
topologicpy/Plotly.py,sha256=qMhBMAYoNMsc-cKdNpqM2p9rqAVXWvBNTzmTKw7iU_0,98963
|
20
|
-
topologicpy/Polyskel.py,sha256=
|
21
|
-
topologicpy/
|
20
|
+
topologicpy/Polyskel.py,sha256=EFsuh2EwQJGPLiFUjvtXmAwdX-A4r_DxP5hF7Qd3PaU,19829
|
21
|
+
topologicpy/PyG.py,sha256=mDEYYGKv-q1B7GI_J7b3pAbJhF0hqMnITZNMzhHycg4,96097
|
22
|
+
topologicpy/Shell.py,sha256=etLWt2VsKOYE-2N0InKdQxLDHEZWsp59DeToSggrjF0,79914
|
22
23
|
topologicpy/Speckle.py,sha256=rUS6PCaxIjEF5_fUruxvMH47FMKg-ohcoU0qAUb-yNM,14267
|
23
|
-
topologicpy/Sun.py,sha256=
|
24
|
-
topologicpy/Topology.py,sha256=
|
24
|
+
topologicpy/Sun.py,sha256=InnKtX8eKwtAgcScuABH6yp0ljmWh5m_fDR4-n3jJMY,36869
|
25
|
+
topologicpy/Topology.py,sha256=vmRjJDN-d0DzYK4IS0XaVeJh_nRs0BJQ6O7FzFjsoFk,365074
|
25
26
|
topologicpy/Vector.py,sha256=WQQUbwrg7VKImtxuBUi2i-FRiPT77WlrzLP05gdXKM8,33079
|
26
27
|
topologicpy/Vertex.py,sha256=EQdVYHmW85_pZdHZB3N8pEi0GiadCCkF3z_oqohA7B0,71161
|
27
|
-
topologicpy/Wire.py,sha256=
|
28
|
+
topologicpy/Wire.py,sha256=bYH4BhGkJMqqTokkNO_cbywHZXWU01002Yc_fp_VUD4,153524
|
28
29
|
topologicpy/__init__.py,sha256=D7ky87CAQMiS2KE6YLvcTLkTgA2PY7rASe6Z23pjp9k,872
|
29
|
-
topologicpy/version.py,sha256=
|
30
|
-
topologicpy-0.7.
|
31
|
-
topologicpy-0.7.
|
32
|
-
topologicpy-0.7.
|
33
|
-
topologicpy-0.7.
|
34
|
-
topologicpy-0.7.
|
30
|
+
topologicpy/version.py,sha256=ZfFmd-4HskNCNpa-tLH-LUI9noSIIDobwPfk7_Ofkss,23
|
31
|
+
topologicpy-0.7.39.dist-info/LICENSE,sha256=BRNw73R2WdDBICtwhI3wm3cxsaVqLTAGuRwrTltcfxs,1068
|
32
|
+
topologicpy-0.7.39.dist-info/METADATA,sha256=sHJJBptOWrR0wJl_ONSITuy41FakAGnrLjzTmEaBt94,10916
|
33
|
+
topologicpy-0.7.39.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
34
|
+
topologicpy-0.7.39.dist-info/top_level.txt,sha256=J30bDzW92Ob7hw3zA8V34Jlp-vvsfIkGzkr8sqvb4Uw,12
|
35
|
+
topologicpy-0.7.39.dist-info/RECORD,,
|
File without changes
|
File without changes
|