PySimultan 0.5.9.7__py3-none-any.whl → 0.6.0.2__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.
Files changed (34) hide show
  1. PySimultan2/CHANGELOG.md +7 -0
  2. PySimultan2/__about__.py +1 -1
  3. PySimultan2/data_model.py +3 -3
  4. PySimultan2/default_types.py +46 -8
  5. PySimultan2/files.py +1 -1
  6. PySimultan2/object_mapper.py +2 -0
  7. PySimultan2/resources/BruTile.dll +0 -0
  8. PySimultan2/resources/ComponentBuilder.dll +0 -0
  9. PySimultan2/resources/ComponentBuilder.xml +93 -15
  10. PySimultan2/resources/HelixToolkit.Core.Wpf.dll +0 -0
  11. PySimultan2/resources/HelixToolkit.SharpDX.Core.Wpf.dll +0 -0
  12. PySimultan2/resources/HelixToolkit.SharpDX.Core.dll +0 -0
  13. PySimultan2/resources/HelixToolkit.dll +0 -0
  14. PySimultan2/resources/Python.Runtime.dll +0 -0
  15. PySimultan2/resources/SIMULTAN.Lang.dll +0 -0
  16. PySimultan2/resources/SIMULTAN.Lang.xml +62 -1
  17. PySimultan2/resources/SIMULTAN.UI.dll +0 -0
  18. PySimultan2/resources/SIMULTAN.UI.xml +57 -0
  19. PySimultan2/resources/SIMULTAN.dll +0 -0
  20. PySimultan2/resources/SIMULTAN.xml +73 -3
  21. PySimultan2/resources/System.Reflection.MetadataLoadContext.dll +0 -0
  22. PySimultan2/resources/defaultsettings.xml +0 -0
  23. PySimultan2/simultan_object.py +6 -1
  24. PySimultan2/utils.py +9 -4
  25. {pysimultan-0.5.9.7.dist-info → pysimultan-0.6.0.2.dist-info}/METADATA +1 -1
  26. {pysimultan-0.5.9.7.dist-info → pysimultan-0.6.0.2.dist-info}/RECORD +28 -33
  27. PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll +0 -0
  28. PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll.config +0 -11
  29. PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll +0 -0
  30. PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll.config +0 -15
  31. PySimultan2/resources/SIMULTAN.Plugins.dll +0 -0
  32. PySimultan2/resources/SIMULTAN.Plugins.xml +0 -396
  33. {pysimultan-0.5.9.7.dist-info → pysimultan-0.6.0.2.dist-info}/WHEEL +0 -0
  34. {pysimultan-0.5.9.7.dist-info → pysimultan-0.6.0.2.dist-info}/licenses/LICENSE.txt +0 -0
@@ -1879,6 +1879,15 @@
1879
1879
  <param name="_file">he file</param>
1880
1880
  <returns>the retrieved resource or null</returns>
1881
1881
  </member>
1882
+ <member name="M:SIMULTAN.Data.Assets.AssetManager.GetFirstResourceWithTag(System.String,System.String)">
1883
+ <summary>
1884
+ Tries to find a resource file by a tag
1885
+ </summary>
1886
+ <param name="taxonomyKey">Taxonomy key of the tag</param>
1887
+ <param name="taxonomyEntryKey">Taxonomy entry key of the tag</param>
1888
+ <returns>The first resource with the tag or null if not found</returns>
1889
+ <exception cref="T:System.ArgumentNullException">If an argument is null</exception>
1890
+ </member>
1882
1891
  <member name="M:SIMULTAN.Data.Assets.AssetManager.SynchronizeResources(System.Collections.Generic.IEnumerable{System.IO.FileInfo},System.Collections.Generic.IEnumerable{System.IO.DirectoryInfo},System.Boolean,System.Boolean)">
1883
1892
  <summary>
1884
1893
  Checks if the given files and resources are represented by resources. Can create missing resources.
@@ -9426,6 +9435,14 @@
9426
9435
  <param name="e2">Edge 2</param>
9427
9436
  <returns>true if edges share a vertex</returns>
9428
9437
  </member>
9438
+ <member name="M:SIMULTAN.Data.Geometry.EdgeAlgorithms.IsHorizontal(SIMULTAN.Data.Geometry.Edge,System.Double)">
9439
+ <summary>
9440
+ Returns if the edge is horizontal (the Y component of it's direction &lt;= epsilon)
9441
+ </summary>
9442
+ <param name="e">The edge</param>
9443
+ <param name="epsilon">The epsilon</param>
9444
+ <returns>If the edge is horizontal</returns>
9445
+ </member>
9429
9446
  <member name="T:SIMULTAN.Data.Geometry.EdgeLoopAlgorithms">
9430
9447
  <summary>
9431
9448
  Provides algorithms that work on EdgeLoop instances
@@ -9569,6 +9586,13 @@
9569
9586
  <param name="polygon">The polygon</param>
9570
9587
  <returns>The perimeter length</returns>
9571
9588
  </member>
9589
+ <member name="M:SIMULTAN.Data.Geometry.EdgeLoopAlgorithms.BoundaryFace(SIMULTAN.Data.Geometry.EdgeLoop)">
9590
+ <summary>
9591
+ Returns the face that has the edge loop as boundary
9592
+ </summary>
9593
+ <param name="loop">The loop</param>
9594
+ <returns>The face that has the edge loop as boundary</returns>
9595
+ </member>
9572
9596
  <member name="T:SIMULTAN.Data.Geometry.GeometricRelation">
9573
9597
  <summary>
9574
9598
  Enumeration for describing geometric relations for intersection tests
@@ -9921,6 +9945,25 @@
9921
9945
  <param name="tolerance">The numerical tolerance</param>
9922
9946
  <returns>True when the ray intersects the face, otherwise False</returns>
9923
9947
  </member>
9948
+ <member name="M:SIMULTAN.Data.Geometry.FaceAlgorithms.FindOrthogonalDirectionInFace(SIMULTAN.Data.Geometry.Edge,SIMULTAN.Data.Geometry.Face,System.Double)">
9949
+ <summary>
9950
+ Tries to find a direction orthogonal to the <paramref name="inputEdge"/> that points into the plane of the given <paramref name="face"/>.
9951
+ Returns the zero vector if it could not be found (Happens if face does not have an area)
9952
+ </summary>
9953
+ <param name="inputEdge">The input edge</param>
9954
+ <param name="face">The face</param>
9955
+ <param name="epsilon">The epsilon for numerical stability</param>
9956
+ <returns>The direction orthogonal to the <paramref name="inputEdge"/> pointing into <paramref name="face"/></returns>
9957
+ </member>
9958
+ <member name="M:SIMULTAN.Data.Geometry.FaceAlgorithms.AngleBetweenOrthogonalFaceDirections(SIMULTAN.Data.SimMath.SimVector3D,SIMULTAN.Data.SimMath.SimVector3D,SIMULTAN.Data.SimMath.SimVector3D)">
9959
+ <summary>
9960
+ Gets the angle between two orthogonal face directions around an edge direction.
9961
+ </summary>
9962
+ <param name="currentFaceDirection">is the direction orthogonal to the <paramref name="edgeDirection"/> of the current face.</param>
9963
+ <param name="edgeDirection">is the edges direction</param>
9964
+ <param name="otherFaceDirection">is the direction orthogonal to the <paramref name="edgeDirection"/> of the other edge to find the angle of</param>
9965
+ <returns>The angle of <paramref name="otherFaceDirection"/> to <paramref name="currentFaceDirection"/> around <paramref name="edgeDirection"/> from 0 to 2 pi</returns>
9966
+ </member>
9924
9967
  <member name="T:SIMULTAN.Data.Geometry.GeometryAlgorithms">
9925
9968
  <summary>
9926
9969
  Provides general algorithms for geometries (intersections, closest points, ...)
@@ -9978,6 +10021,17 @@
9978
10021
  <param name="l1Direction">Direction of the second line</param>
9979
10022
  <returns>l0Point: Point on the first line, l0Param: line parameter of l1Point, l1Param: Same for second line</returns>
9980
10023
  </member>
10024
+ <member name="M:SIMULTAN.Data.Geometry.GeometryAlgorithms.TryOrthogonalize(SIMULTAN.Data.SimMath.SimVector3D,SIMULTAN.Data.SimMath.SimVector3D,System.Double,SIMULTAN.Data.SimMath.SimVector3D@)">
10025
+ <summary>
10026
+ Tries to orthogonalize a vector to a reference vector using the Gram-Schmidt process.
10027
+ Fails if the two vectors are collinear.
10028
+ </summary>
10029
+ <param name="reference">The reference vector</param>
10030
+ <param name="toOrthogonalize">The vector that should be made orthogonal to the reference vector</param>
10031
+ <param name="epsilon">The epsilon for numeric comparisons</param>
10032
+ <param name="result">The resulting orthogonalized vector</param>
10033
+ <returns>True if successful, false if both vectors are collinear</returns>
10034
+ </member>
9981
10035
  <member name="T:SIMULTAN.Data.Geometry.ModelInconsistentException">
9982
10036
  <summary>
9983
10037
  Exception when GeometryModel is inconsistent
@@ -10129,7 +10183,7 @@
10129
10183
  <param name="p">A point consisting of longitude (x), latitude (y) and height relative to surface (z)</param>
10130
10184
  <returns>The point in the Cartesian coordinate system of the WGS reference ellipsoid.</returns>
10131
10185
  </member>
10132
- <member name="M:SIMULTAN.Data.Geometry.GeoReferenceAlgorithms.CartToWGS84(SIMULTAN.Data.SimMath.SimPoint3D,System.Double)">
10186
+ <member name="M:SIMULTAN.Data.Geometry.GeoReferenceAlgorithms.CartToWGS84(SIMULTAN.Data.SimMath.SimPoint3D,System.Double,System.Int32)">
10133
10187
  <summary>
10134
10188
  Transforms a point with cartesian coordinates into the WGS coordinate system.
10135
10189
  https://gssc.esa.int/navipedia/index.php/Ellipsoidal_and_Cartesian_Coordinates_Conversion
@@ -10137,6 +10191,7 @@
10137
10191
  </summary>
10138
10192
  <param name="point">A point in the catesian space with [0,0,0] being the earths center.</param>
10139
10193
  <param name="precision">The precision of the calculation.</param>
10194
+ <param name="maxIterations">Maximum number of iterations to prevent infinite loops</param>
10140
10195
  <returns>The point in the WGS coordinate system.</returns>
10141
10196
  </member>
10142
10197
  <member name="M:SIMULTAN.Data.Geometry.GeoReferenceAlgorithms.TangentFrame(SIMULTAN.Data.SimMath.SimPoint3D)">
@@ -12656,6 +12711,7 @@
12656
12711
  <member name="P:SIMULTAN.Data.Geometry.PFace.Orientation">
12657
12712
  <summary>
12658
12713
  Returns the orientation relative to the Face
12714
+ Forward means the Normal of the Face points inside the volume
12659
12715
  </summary>
12660
12716
  </member>
12661
12717
  <member name="M:SIMULTAN.Data.Geometry.PFace.#ctor(SIMULTAN.Data.Geometry.Face,SIMULTAN.Data.Geometry.Volume,SIMULTAN.Data.Geometry.GeometricOrientation)">
@@ -20925,6 +20981,18 @@
20925
20981
  Tells whether the network has a parent
20926
20982
  </summary>
20927
20983
  </member>
20984
+ <member name="T:SIMULTAN.Data.SimNetworks.SimNetwork.AssociationChangedEventHandler">
20985
+ <summary>
20986
+ Event handler delegate for the <see cref="E:SIMULTAN.Data.SimNetworks.SimNetwork.AssociationChanged"/> event.
20987
+ </summary>
20988
+ <param name="sender">The sender</param>
20989
+ <param name="elements">The network elements of which the association changed</param>
20990
+ </member>
20991
+ <member name="E:SIMULTAN.Data.SimNetworks.SimNetwork.AssociationChanged">
20992
+ <summary>
20993
+ Invoked when the association relationship in one or more network elements changed
20994
+ </summary>
20995
+ </member>
20928
20996
  <member name="M:SIMULTAN.Data.SimNetworks.SimNetwork.#ctor(System.String)">
20929
20997
  <summary>
20930
20998
  Constructs a new SimNetwork
@@ -21096,10 +21164,11 @@
21096
21164
  <param name="parent">The parent network</param>
21097
21165
  <returns>Returns the cloned SimNetworkBLock, and a Dictionary with the original and cloned port LocalId pairs</returns>
21098
21166
  </member>
21099
- <member name="M:SIMULTAN.Data.SimNetworks.SimNetworkBlock.RemoveComponentInstance">
21167
+ <member name="M:SIMULTAN.Data.SimNetworks.SimNetworkBlock.RemoveComponentInstance(System.Boolean)">
21100
21168
  <summary>
21101
21169
  Removes the assigned component instance from the block as well as from the ports of the block
21102
21170
  </summary>
21171
+ <param name="sendAssociatedEvent">If the AssociationChanged event on the network should be called</param>
21103
21172
  </member>
21104
21173
  <member name="M:SIMULTAN.Data.SimNetworks.SimNetworkBlock.AssignComponent(SIMULTAN.Data.Components.SimComponent,System.Boolean)">
21105
21174
  <summary>
@@ -32217,13 +32286,14 @@
32217
32286
  <param name="key"></param>
32218
32287
  <param name="value"></param>
32219
32288
  </member>
32220
- <member name="M:SIMULTAN.Serializer.XMLIOExtensions.LoadInnerText(System.Xml.XmlElement,System.String,System.Action{System.String})">
32289
+ <member name="M:SIMULTAN.Serializer.XMLIOExtensions.LoadInnerText(System.Xml.XmlElement,System.String,System.Action{System.String},System.Xml.XmlNamespaceManager)">
32221
32290
  <summary>
32222
32291
  Loads an xml node and converts the content
32223
32292
  </summary>
32224
32293
  <param name="node">The XMLElement onto which the xpath is applied</param>
32225
32294
  <param name="xpath">The xpath expression</param>
32226
32295
  <param name="converter">Convert to convert the content string</param>
32296
+ <param name="nsmgr">Namespace manager of the xml node</param>
32227
32297
  <returns>True when the xpath has selected an element, False otherwise</returns>
32228
32298
  </member>
32229
32299
  <member name="T:SIMULTAN.Utils.AdmissibilityQueries">
Binary file
@@ -322,7 +322,12 @@ class SimultanObject(object, metaclass=MetaMock):
322
322
  slot)
323
323
 
324
324
  def remove_referenced_component(self, referenced_component: 'SimultanObject'):
325
- utils.remove_referenced_component(self._wrapped_obj, referenced_component._wrapped_obj)
325
+
326
+ if isinstance(referenced_component, SimComponent):
327
+ utils.remove_referenced_component(self._wrapped_obj, referenced_component)
328
+ elif isinstance(referenced_component, SimultanObject):
329
+ utils.remove_referenced_component(self._wrapped_obj, referenced_component._wrapped_obj)
330
+
326
331
 
327
332
  def add_asset(self,
328
333
  resource_file_entry: 'ResourceFileEntry',
PySimultan2/utils.py CHANGED
@@ -8,6 +8,7 @@ from weakref import WeakSet
8
8
  import numpy as np
9
9
  import pandas as pd
10
10
  from typing import List as TypeList, Union, Optional, Type, Any, TYPE_CHECKING
11
+ from SIMULTAN.Data import SimId
11
12
 
12
13
  from System import ArgumentException, NotSupportedException
13
14
 
@@ -466,6 +467,7 @@ def add_sub_component(comp: SimComponent,
466
467
  error = None
467
468
  except (ArgumentException, NotSupportedException) as e:
468
469
  error = e
470
+ raise error
469
471
  return True
470
472
 
471
473
 
@@ -498,15 +500,16 @@ def remove_sub_component(comp: Union[SimComponent, SimultanObject],
498
500
  component_wrapped_obj = comp if isinstance(comp, SimComponent) else comp._wrapped_obj
499
501
 
500
502
  if index is not None:
501
- component_wrapped_obj.Components.RemoveItem(index)
503
+ component_wrapped_obj.Components.RemoveAt(index)
504
+ # sub_comp.Id = SimId.Empty
502
505
  return
503
506
 
504
507
  for i, sub_comp_entry in enumerate(component_wrapped_obj.Components.Items):
505
508
  if sub_comp_entry.Component == sub_comp_wrapped_obj:
506
- component_wrapped_obj.Components.RemoveItem(i)
509
+ component_wrapped_obj.Components.RemoveAt(i)
510
+ # sub_comp.Id = SimId.Empty
507
511
  return
508
512
 
509
-
510
513
  def create_resource_reference(component: Union[SimComponent, SimultanObject],
511
514
  resource: ContainedResourceFileEntry) -> Asset:
512
515
  """
@@ -585,10 +588,12 @@ def remove_referenced_component(component: Union[SimComponent, SimultanObject],
585
588
 
586
589
  for i, ref_comp in enumerate(component.ReferencedComponents.Items):
587
590
  if ref_comp.Target == referenced_wrapped_obj:
588
- component_wrapped_obj.ReferencedComponents.RemoveItem(i)
591
+ component_wrapped_obj.ReferencedComponents.RemoveAt(i)
589
592
  return
590
593
 
591
594
 
595
+
596
+
592
597
  def find_components_with_taxonomy(component_list: list[SimComponent], key, first=False) -> set[SimComponent]:
593
598
 
594
599
  components = set()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PySimultan
3
- Version: 0.5.9.7
3
+ Version: 0.6.0.2
4
4
  Project-URL: Documentation, https://github.com/Bühler Maximilian/PySimultan2#readme
5
5
  Project-URL: Issues, https://github.com/Bühler Maximilian/PySimultan2/issues
6
6
  Project-URL: Source, https://github.com/Bühler Maximilian/PySimultan2
@@ -1,36 +1,36 @@
1
- PySimultan2/CHANGELOG.md,sha256=bRHCRr8oAxy4wd1ZUSztPYmx7_F40KkO3Qm9_H5jCGg,787
2
- PySimultan2/__about__.py,sha256=AzMoyWtva5vCDZ8GestG4ORgLbm33B3AaD-c_QZaxCI,21
1
+ PySimultan2/CHANGELOG.md,sha256=LEcptxMV0qCU5AyEhqo-k6pM1OfssnIV_aOdCbAS1ws,992
2
+ PySimultan2/__about__.py,sha256=QXM1oo0_xs6vzYbSga3UHP9joSvuNytEwvVmIDoAR6w,21
3
3
  PySimultan2/__init__.py,sha256=PGVR1uhY01dF5tHyad-znURUZ_LVB95vsjId2BT0aJM,3245
4
- PySimultan2/data_model.py,sha256=3PJdz-coAa69Zct9PmGEB_CeMp-r-s4DQFFdTCwsn6o,37878
5
- PySimultan2/default_types.py,sha256=P43xVs8ItrxONRwq902-InUmCVXiTYerD0i-PME3KeM,27542
6
- PySimultan2/files.py,sha256=4wuTfjgOMz6BEEwUDgNmUjfHZj0PYvcuE5-LWz2UEb0,28763
4
+ PySimultan2/data_model.py,sha256=4TNhL_YnP7gYVEqIHAVjjmOYoEkKnU0daip0DvANdeE,37959
5
+ PySimultan2/default_types.py,sha256=twkiexHeMgh20o406OYvsV9eiYy4jZxVeuyl48aLvpI,29231
6
+ PySimultan2/files.py,sha256=bDBaPjO4dpkuMepDYvcKSiJzo8w-sj3_hUHIF0QlEJ8,28810
7
7
  PySimultan2/multi_values.py,sha256=ZFXlTLuZo32x7_7diYAp2XEjp5uwgHLgNOzN7v74-5I,13650
8
- PySimultan2/object_mapper.py,sha256=BJ4GZvRSZz0KU3ibjBQWnQbgiAzVWsf1b8tLaYrYtpQ,19708
9
- PySimultan2/simultan_object.py,sha256=akaSUZZWIVfwx1wT5EdOgRR2UeShUthX-LE2Uk6w8CQ,19058
8
+ PySimultan2/object_mapper.py,sha256=Oz5KWvCzrYVb0ILj_WHuRarYIvVxOUGDGNeIVm5bGNQ,19839
9
+ PySimultan2/simultan_object.py,sha256=7g-1VK6P3xotwP-IMz0QFiSiRlk3AXMtcoWpf0KcYQg,19278
10
10
  PySimultan2/taxonomy_maps.py,sha256=hhgXhRXIPTD2briG_yYZssJ9musOnzs0LC4e8e78e40,10323
11
11
  PySimultan2/type_setter_lookup.py,sha256=PGa5_EtV7SM15w3uxy0fA3LiQ0TaS4Ys0LYR5zs8aNk,3748
12
- PySimultan2/utils.py,sha256=5IPhrmbh72gWa9YxCCJkdaU_vtpA5QNogDYDnduj2uM,66835
12
+ PySimultan2/utils.py,sha256=hQpA14rtfmfSbEclwvel3cJclPu6kHIH_xAbefmLhkc,66967
13
13
  PySimultan2/geometry/__init__.py,sha256=nJolTD1i5J8qUkOQa-r3D20aq3Co3sN31Xc0n4wJpJo,248
14
14
  PySimultan2/geometry/geometry_base.py,sha256=TwABfQEsqxAIGLqwvqVXEV-GA5sYGBJSJm7e58QmNzM,24015
15
15
  PySimultan2/geometry/utils.py,sha256=J25YsK8sso_UL7xRusItQZvyjtvxdOsSPelBQYFABhY,8519
16
16
  PySimultan2/resources/AssimpNet.dll,sha256=x8uwMHPRmEH9fDQihfEQLUdblM1u7RP-CCnUjOpXcLo,205312
17
17
  PySimultan2/resources/AvalonDock.dll,sha256=9tCcw7cpaVq0bh1H2sfcxb8EWhySmgujPs89lAqIPZs,500224
18
- PySimultan2/resources/BruTile.dll,sha256=ZiE_vovBW_CZOjDgOn8eaq_tfWRBD3-nSEk0ctBSdKI,198144
18
+ PySimultan2/resources/BruTile.dll,sha256=sJOMQaku5jxcbL7XEd9pehBopyFEHOZzaLyNZyD6u7U,203264
19
19
  PySimultan2/resources/ClosedXML.dll,sha256=dzkwJaBvIdou7SZSE5lsEART_jlnMMztEZu_jBuHp74,1198592
20
- PySimultan2/resources/ComponentBuilder.dll,sha256=h1muHkr2D3cITs39GEAlc73jPomuBT6tpuZaHYEAgg8,2304512
20
+ PySimultan2/resources/ComponentBuilder.dll,sha256=38kTs312oyDDfX9z4JJyvlfbb7JxMrCEFe58zYnidcQ,2324992
21
21
  PySimultan2/resources/ComponentBuilder.dll.config,sha256=jP5s_8OMg9085DyGtrLZcguy8etqm4ra21KwDXq1sy0,3032
22
22
  PySimultan2/resources/ComponentBuilder.runtimeconfig.json,sha256=YBIGLYblUb1QapC3Td-VcI9HtfEQ_6rQssb-JbeODyA,458
23
- PySimultan2/resources/ComponentBuilder.xml,sha256=5jkNgGaRzrSS2Umvcs_7vRuJqIZUc8GSKfAT0kfV4GA,1039253
23
+ PySimultan2/resources/ComponentBuilder.xml,sha256=-P7kILmeX_v7ZCie38jMrceS5gX53h7q8ukIKNmgoyU,1044233
24
24
  PySimultan2/resources/ControlzEx.dll,sha256=S26xw5MnNiIoyiCmVFbFOmUx1yx_zAyXBdDSOSidZxQ,463160
25
25
  PySimultan2/resources/Cyotek.Drawing.BitmapFont.dll,sha256=JG8HbAq5s796e02jB9QklO2cOyKPtHmhY6vc7KUs0OQ,41800
26
26
  PySimultan2/resources/DocumentFormat.OpenXml.dll,sha256=JjiBI17BpHztipV39dQdXAjhHo6Ic0xRjijJJuBQLLo,6108592
27
27
  PySimultan2/resources/DotSpatial.Projections.dll,sha256=dK4oFLcpUK3i6CZ3qIcX5B0npYd-W4hHJz7RJvM77ho,1541632
28
28
  PySimultan2/resources/ExcelNumberFormat.dll,sha256=18Rbjk4QJ4MeL8jN-UH69R0opm_qz8qqc32nMmLntQc,30720
29
29
  PySimultan2/resources/Fluent.dll,sha256=9b7QKKj8-Ynhe4WqSVfiP82PkxYz_kI_GXYi_KQxrEU,2598400
30
- PySimultan2/resources/HelixToolkit.Core.Wpf.dll,sha256=fja1q_EVnu7tVMh_7t-fJUEllzBjPBCCJi4XUPkqdXI,586240
31
- PySimultan2/resources/HelixToolkit.SharpDX.Core.Wpf.dll,sha256=UKAHS0g37VbEtnEOXDaEgSH5OK6Au9edAECfWWLolIQ,613376
32
- PySimultan2/resources/HelixToolkit.SharpDX.Core.dll,sha256=rTdGZRKbcjsY-qQQDDTwwrOQRc_Nb9DpxBV_n2zfm2M,1729536
33
- PySimultan2/resources/HelixToolkit.dll,sha256=v9yR5_qsSI6PHGRrVoSrsERSHF_YF3jVAaldAYQArp8,6656
30
+ PySimultan2/resources/HelixToolkit.Core.Wpf.dll,sha256=EU2-CBh2SDNjwZEP2pOBJhLUf0lKpOL77dYH4fS3wZY,592384
31
+ PySimultan2/resources/HelixToolkit.SharpDX.Core.Wpf.dll,sha256=KgLYD_QrOxwu90Zk59KLsquAGthP_B-FW0GyHEkyDk0,613888
32
+ PySimultan2/resources/HelixToolkit.SharpDX.Core.dll,sha256=iKE8TEEAEX9FCg-6CipTCq79aiR79d6jep0rwMCAwgM,1733120
33
+ PySimultan2/resources/HelixToolkit.dll,sha256=HjbeIX5qCQOm-2HhJCd7ZjCwGAeVoaAHo3SHV8_B4ak,6656
34
34
  PySimultan2/resources/MathNet.Numerics.dll,sha256=g7QaYI5DhAnWUg0BEk9S9XQJ4il5HA4HTjFazn2fQTQ,1600000
35
35
  PySimultan2/resources/Microsoft.AspNetCore.Authorization.dll,sha256=P7_HRwCqdk3q1MD7UtlAXMN_E8gZRdzme6ESGZsXHNk,49272
36
36
  PySimultan2/resources/Microsoft.AspNetCore.Metadata.dll,sha256=jddQwxkgfjmJ6vlXok-PbfnIquNDs6VHvspFEopiTAY,17016
@@ -43,18 +43,13 @@ PySimultan2/resources/Microsoft.WindowsAPICodePack.dll,sha256=aB9FK5RWRh1onyayOe
43
43
  PySimultan2/resources/Microsoft.Xaml.Behaviors.dll,sha256=j3gq16397qqTMYMGWqegvpOHq85gOOkSRV54UnsErco,145272
44
44
  PySimultan2/resources/Newtonsoft.Json.Bson.dll,sha256=tgbl3XemJCyh8d9xfrU9lQWuVpBDMLl1wI1PLb6MMxk,90624
45
45
  PySimultan2/resources/Newtonsoft.Json.dll,sha256=etsgJYQb32kqVnEuCK_nXhcwxx1keKj-1XWs1DJRpmI,639488
46
- PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll,sha256=dtErCiJG-De-0WAXbsCjaQiCMo9HxKdIj7xqQnPMCPs,25088
47
- PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll.config,sha256=4rhndDRQFzX7AjPtDML_7lv2-0OHxR28slhacOQuTwg,432
48
- PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll,sha256=7dqMPmwPrrCpLS69IRuVQEux8nzA-wINx1CFG0Ji5j8,16384
49
- PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll.config,sha256=HvbeaSHEkocT9rD29HBz5uBbH3lmvCBBwzo9DD8RGo4,706
50
- PySimultan2/resources/SIMULTAN.Lang.dll,sha256=v6CvF1yAP3Y_ZSDLM4M1neDslSEUoN2QWh7xp5eeb_w,2584576
51
- PySimultan2/resources/SIMULTAN.Lang.xml,sha256=RB5sIQdIqpqyM_b9xxRprWlOs8cr6XgeDbdk7rN6Tbg,736513
52
- PySimultan2/resources/SIMULTAN.Plugins.dll,sha256=lDyPykpM5AyhgSlU4JjZsmMqH0NjcS12zP0HFKGrwP0,18944
53
- PySimultan2/resources/SIMULTAN.Plugins.xml,sha256=TqS3AuLxIKvHWoSkodX8RKhviwm8Isz3xC3QQcOT0rs,17708
54
- PySimultan2/resources/SIMULTAN.UI.dll,sha256=_qq5w1MdpjkJMGll3osNalDilDOsVDkEadxw6I_PS-I,1216512
55
- PySimultan2/resources/SIMULTAN.UI.xml,sha256=Ot5-CtpwT6Cng0EjmlBKHkUQFlJ4SMZYlLxqLfeuDW8,833822
56
- PySimultan2/resources/SIMULTAN.dll,sha256=GuFGoqJH1m2k19Fb8K_yJGI55f_BmSBuyKY-Q51YZZs,1768448
57
- PySimultan2/resources/SIMULTAN.xml,sha256=k0ZClCQhdXKWLhRRgN94WnVl2m5w7_PPN9AMBdE-sPc,1963736
46
+ PySimultan2/resources/Python.Runtime.dll,sha256=i8TGSK2uHgN4_JwFn8llwTNrhXtqU-l05M8-CdMIy7Q,438784
47
+ PySimultan2/resources/SIMULTAN.Lang.dll,sha256=Z_vMisLt6CHABBO_FYcA9utI8n10kSqXy7tE5iFa8o0,2587136
48
+ PySimultan2/resources/SIMULTAN.Lang.xml,sha256=5kUlwuT-UNog9Y2JjjSFdBW8b1s14Nf1B_YyQlrf7Vg,739070
49
+ PySimultan2/resources/SIMULTAN.UI.dll,sha256=Iya297q6BCfLAHxLnJEoFi6h9-H54Dg0Ps6bbyDyOuQ,1245184
50
+ PySimultan2/resources/SIMULTAN.UI.xml,sha256=NVUg3RiPzvUJk87fHnVya0BVdL3tECz8gg2GQZHOevs,836095
51
+ PySimultan2/resources/SIMULTAN.dll,sha256=eNB8MyMrrqNk398r2q39Y3-L5eeymN4eShFFD_OmKcA,1771520
52
+ PySimultan2/resources/SIMULTAN.xml,sha256=oRopamMm95ByupGN_8VzQmMlHA_AfFS2bFBZ1pPAlY0,1968806
58
53
  PySimultan2/resources/SharpDX.D3DCompiler.dll,sha256=qyDGhqpcMo0zkNAdSdyX9sxWRxGRZq6ce4FIBXvxXSI,57856
59
54
  PySimultan2/resources/SharpDX.DXGI.dll,sha256=GMTsibwN7s_JG8t-ofKaJpDpKIADw2bqAnAzdLS21zI,147968
60
55
  PySimultan2/resources/SharpDX.Direct2D1.dll,sha256=HkRyV1YspAeY05q0E4pkFy3Hrrkd96fr9SzlmVnDekc,495616
@@ -68,14 +63,14 @@ PySimultan2/resources/System.Collections.Immutable.dll,sha256=YkpsmK2tsFnupt75Og
68
63
  PySimultan2/resources/System.Data.OleDb.dll,sha256=-AAzdmyo01QNgD9qnUIewEImplJFVNDGUlqE17qmRYA,124024
69
64
  PySimultan2/resources/System.Net.Http.Formatting.dll,sha256=xQBIin4YpqDObdqwau_5dr8XQEq54hlxV4gBgNtUqbc,179672
70
65
  PySimultan2/resources/System.Reflection.Metadata.dll,sha256=Z_vYHE6IgOvBi3DLxLhfX-v6o01lTfD0B4oW6B8IsyA,475912
71
- PySimultan2/resources/System.Reflection.MetadataLoadContext.dll,sha256=Fbu6xb2TISqYo235SFdcXBxG-0nbtA2XNftoDa4FqIA,253600
66
+ PySimultan2/resources/System.Reflection.MetadataLoadContext.dll,sha256=P4PBRwAGWL27sNc754Wd28t_koJKBFYJ2FyolrD1xo0,242296
72
67
  PySimultan2/resources/XAMLMarkupExtensions.dll,sha256=Ck7FAAFHqSSwMtGJebfun-88OCEplWxY2YKMwlFaF84,36864
73
68
  PySimultan2/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
69
  PySimultan2/resources/assimp.dll,sha256=HwfDwXqoPDTFRyoQpA3qmgZoUdFtziJkV5fNtktEZEU,6081536
75
70
  PySimultan2/resources/componentmanager.user,sha256=hrzr1US4pqkFnLHXcvPkvrgGd7QvlxaV8mhS6fuikEs,760
76
- PySimultan2/resources/defaultsettings.xml,sha256=s6Tk1tubLz5UYqXZWpD42EDHzedemRY1nEneoIVcUfg,392
71
+ PySimultan2/resources/defaultsettings.xml,sha256=QCkKmhNMxwSvC-aYUUMhkCkXqRSrkuFt5s4FEI5x1wo,396
77
72
  PySimultan2/resources/setup.bat,sha256=fjvvYfVM6TalS-QTSiKAbAId5nTsk8kGGo06ba-wWaY,32
78
- pysimultan-0.5.9.7.dist-info/METADATA,sha256=5K3Hf8oJBzmjVOorHvWa4r7lyD-RNT_tfA0_DQ6m9Fo,6550
79
- pysimultan-0.5.9.7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
80
- pysimultan-0.5.9.7.dist-info/licenses/LICENSE.txt,sha256=pmSr98k6N005KMojnZxzLGRuRlDjDx3PUrK1lFj53HA,1126
81
- pysimultan-0.5.9.7.dist-info/RECORD,,
73
+ pysimultan-0.6.0.2.dist-info/METADATA,sha256=u3OsmNWdcPANG3OEVBNHp88k_u6lBQBMTwgHGojY_4Q,6550
74
+ pysimultan-0.6.0.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
75
+ pysimultan-0.6.0.2.dist-info/licenses/LICENSE.txt,sha256=pmSr98k6N005KMojnZxzLGRuRlDjDx3PUrK1lFj53HA,1126
76
+ pysimultan-0.6.0.2.dist-info/RECORD,,
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <configuration>
3
- <runtime>
4
- <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
5
- <dependentAssembly>
6
- <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
7
- <bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" />
8
- </dependentAssembly>
9
- </assemblyBinding>
10
- </runtime>
11
- </configuration>
@@ -1,15 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <configuration>
3
- <runtime>
4
- <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
5
- <dependentAssembly>
6
- <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
7
- <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
8
- </dependentAssembly>
9
- <dependentAssembly>
10
- <assemblyIdentity name="Microsoft.AspNetCore.Metadata" publicKeyToken="adb9793829ddae60" culture="neutral" />
11
- <bindingRedirect oldVersion="0.0.0.0-5.0.7.0" newVersion="5.0.7.0" />
12
- </dependentAssembly>
13
- </assemblyBinding>
14
- </runtime>
15
- </configuration>
Binary file