PySimultan 0.4.22__py3-none-any.whl → 0.5.0__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.
- PySimultan2/__about__.py +1 -1
- PySimultan2/__init__.py +1 -0
- PySimultan2/data_model.py +185 -80
- PySimultan2/default_types.py +127 -21
- PySimultan2/files.py +55 -5
- PySimultan2/object_mapper.py +58 -7
- PySimultan2/resources/ComponentBuilder.dll +0 -0
- PySimultan2/resources/ComponentBuilder.runtimeconfig.json +2 -1
- PySimultan2/resources/ComponentBuilder.xml +47 -1
- PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll +0 -0
- PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll +0 -0
- PySimultan2/resources/SIMULTAN.Lang.dll +0 -0
- PySimultan2/resources/SIMULTAN.Lang.xml +94 -7
- PySimultan2/resources/SIMULTAN.Plugins.dll +0 -0
- PySimultan2/resources/SIMULTAN.UI.dll +0 -0
- PySimultan2/resources/SIMULTAN.UI.xml +136 -43
- PySimultan2/resources/SIMULTAN.dll +0 -0
- PySimultan2/resources/SIMULTAN.xml +364 -97
- PySimultan2/resources/System.Collections.Immutable.dll +0 -0
- PySimultan2/resources/System.Reflection.Metadata.dll +0 -0
- PySimultan2/resources/System.Reflection.MetadataLoadContext.dll +0 -0
- PySimultan2/resources/componentmanager.user +0 -0
- PySimultan2/simultan_object.py +64 -15
- PySimultan2/taxonomy_maps.py +20 -12
- PySimultan2/type_setter_lookup.py +46 -33
- PySimultan2/utils.py +49 -14
- {pysimultan-0.4.22.dist-info → pysimultan-0.5.0.dist-info}/METADATA +2 -3
- {pysimultan-0.4.22.dist-info → pysimultan-0.5.0.dist-info}/RECORD +30 -32
- {pysimultan-0.4.22.dist-info → pysimultan-0.5.0.dist-info}/WHEEL +1 -1
- PySimultan2/resources/GeometryViewer.dll +0 -0
- PySimultan2/resources/GeometryViewer.dll.config +0 -42
- PySimultan2/resources/GeometryViewer.xml +0 -6425
- PySimultan2/resources/SitePlanner.dll +0 -0
- PySimultan2/resources/SitePlanner.dll.config +0 -11
- PySimultan2/resources/SitePlanner.xml +0 -2736
- {pysimultan-0.4.22.dist-info → pysimultan-0.5.0.dist-info}/licenses/LICENSE.txt +0 -0
@@ -5507,6 +5507,24 @@
|
|
5507
5507
|
<param name="predicate">A function to test each component for a condition.</param>
|
5508
5508
|
<returns>The components that match the predicate</returns>
|
5509
5509
|
</member>
|
5510
|
+
<member name="M:SIMULTAN.Data.Components.ComponentWalker.GetInstanceValue(SIMULTAN.Data.Components.SimBaseParameter,SIMULTAN.Data.Geometry.BaseGeometry)">
|
5511
|
+
<summary>
|
5512
|
+
Tries to find the instance value of the given parameter and geometry.
|
5513
|
+
</summary>
|
5514
|
+
<param name="parameter">The parameter to get the instance value of</param>
|
5515
|
+
<param name="geometry">The geometry to get the instance value for</param>
|
5516
|
+
<returns>The persistant instance value of the parameter and geometry. Null if not found</returns>
|
5517
|
+
<exception cref="T:System.ArgumentNullException">If an argument is null</exception>
|
5518
|
+
</member>
|
5519
|
+
<member name="M:SIMULTAN.Data.Components.ComponentWalker.GetInstance(SIMULTAN.Data.Components.SimComponent,SIMULTAN.Data.Geometry.BaseGeometry)">
|
5520
|
+
<summary>
|
5521
|
+
Tries to find the instance of the given component and geometry.
|
5522
|
+
</summary>
|
5523
|
+
<param name="component">The component</param>
|
5524
|
+
<param name="geometry">The geometry</param>
|
5525
|
+
<returns>The instance, or null if not found.</returns>
|
5526
|
+
<exception cref="T:System.ArgumentNullException">If an argument is null</exception>
|
5527
|
+
</member>
|
5510
5528
|
<member name="T:SIMULTAN.Data.Components.SimAccessProfile">
|
5511
5529
|
<summary>
|
5512
5530
|
Stores the access management for a component.
|
@@ -9226,6 +9244,15 @@
|
|
9226
9244
|
<param name="v2">vector 2</param>
|
9227
9245
|
<returns>Signed angle between two 2D vectors in the range [-pi, pi].</returns>
|
9228
9246
|
</member>
|
9247
|
+
<member name="M:SIMULTAN.Data.Geometry.DetectionAlgorithms.SignedAngle(SIMULTAN.Data.SimMath.SimVector3D,SIMULTAN.Data.SimMath.SimVector3D,SIMULTAN.Data.SimMath.SimVector3D)">
|
9248
|
+
<summary>
|
9249
|
+
Computes the signed angle between two directions along a third direction
|
9250
|
+
</summary>
|
9251
|
+
<param name="v1">First direction</param>
|
9252
|
+
<param name="v2">Second direction</param>
|
9253
|
+
<param name="vn">Rotation Axis</param>
|
9254
|
+
<returns>The signed angle</returns>
|
9255
|
+
</member>
|
9229
9256
|
<member name="M:SIMULTAN.Data.Geometry.DetectionAlgorithms.ShortAngleDist(System.Double,System.Double)">
|
9230
9257
|
<summary>
|
9231
9258
|
Computes the shortest distance between angles in degrees, i.e. distance is always less than 180°
|
@@ -9235,6 +9262,20 @@
|
|
9235
9262
|
<param name="a1">Second angle in degrees</param>
|
9236
9263
|
<returns>Shortest distance between angles in degrees</returns>
|
9237
9264
|
</member>
|
9265
|
+
<member name="M:SIMULTAN.Data.Geometry.DetectionAlgorithms.FindConnectedEdgeLoopGroups(System.Collections.Generic.IEnumerable{SIMULTAN.Data.Geometry.EdgeLoop})">
|
9266
|
+
<summary>
|
9267
|
+
Finds all connected (share a vertex) edge loops and returns all the connected clusters.
|
9268
|
+
</summary>
|
9269
|
+
<param name="loops">The loops</param>
|
9270
|
+
<returns>An array off all connected loops in the list</returns>
|
9271
|
+
</member>
|
9272
|
+
<member name="M:SIMULTAN.Data.Geometry.DetectionAlgorithms.FindConnectedEdgeGroups(System.Collections.Generic.IEnumerable{SIMULTAN.Data.Geometry.Edge})">
|
9273
|
+
<summary>
|
9274
|
+
Find all connected clusters of edges.
|
9275
|
+
</summary>
|
9276
|
+
<param name="edges">The edges</param>
|
9277
|
+
<returns>Array of edge lists that are connected.</returns>
|
9278
|
+
</member>
|
9238
9279
|
<member name="T:SIMULTAN.Data.Geometry.EdgeAlgorithms">
|
9239
9280
|
<summary>
|
9240
9281
|
Provides algorithms that operate on edges
|
@@ -9263,7 +9304,7 @@
|
|
9263
9304
|
<param name="p">The point</param>
|
9264
9305
|
<returns>Distance of the point to the line (d) and the line equation parameter of the closed point (t)</returns>
|
9265
9306
|
</member>
|
9266
|
-
<member name="M:SIMULTAN.Data.Geometry.EdgeAlgorithms.EdgeEdgeIntersection(SIMULTAN.Data.Geometry.Edge,SIMULTAN.Data.Geometry.Edge,System.Double)">
|
9307
|
+
<member name="M:SIMULTAN.Data.Geometry.EdgeAlgorithms.EdgeEdgeIntersection(SIMULTAN.Data.Geometry.Edge,SIMULTAN.Data.Geometry.Edge,System.Double,System.Double)">
|
9267
9308
|
<summary>
|
9268
9309
|
Calculates the intersection between two lines
|
9269
9310
|
</summary>
|
@@ -9271,6 +9312,7 @@
|
|
9271
9312
|
<param name="e2">Second edge</param>
|
9272
9313
|
<param name="endLineTolerance">Defines which region at start and end of lines are considered outside.
|
9273
9314
|
The line parameter t has to be in [tolerance, 1-tolerance] to be considered intersecting</param>
|
9315
|
+
<param name="tolerance">The numerical tolerance for comparisons</param>
|
9274
9316
|
<returns>A bool indicating whether the two edges intersect and the line parameters t1 for e1 and t2 for e2</returns>
|
9275
9317
|
</member>
|
9276
9318
|
<member name="M:SIMULTAN.Data.Geometry.EdgeAlgorithms.IsOnSameLine(SIMULTAN.Data.Geometry.Edge,SIMULTAN.Data.Geometry.Edge,System.Double)">
|
@@ -9303,9 +9345,17 @@
|
|
9303
9345
|
<param name="e">The edge</param>
|
9304
9346
|
<param name="geometries">The resulting geometry list</param>
|
9305
9347
|
</member>
|
9348
|
+
<member name="M:SIMULTAN.Data.Geometry.EdgeAlgorithms.AdjacentFaces(SIMULTAN.Data.Geometry.Edge,System.Collections.Generic.HashSet{SIMULTAN.Data.Geometry.Face}@)">
|
9349
|
+
<summary>
|
9350
|
+
Gets all adjacent faces of the edge and adds them to the faces list.
|
9351
|
+
</summary>
|
9352
|
+
<param name="e">The edge</param>
|
9353
|
+
<param name="faces">The faces list</param>
|
9354
|
+
</member>
|
9306
9355
|
<member name="M:SIMULTAN.Data.Geometry.EdgeAlgorithms.OrderLoop(System.Collections.Generic.IEnumerable{SIMULTAN.Data.Geometry.Edge})">
|
9307
9356
|
<summary>
|
9308
9357
|
Tries to order the edges such that they form a closed loop by following the edges.
|
9358
|
+
Self intersecting loops will return false.
|
9309
9359
|
</summary>
|
9310
9360
|
<param name="edges">The edges</param>
|
9311
9361
|
<returns>A bool indicating if the edges form a closed loop. The list contains the ordered edges or null when they don't form a loop.</returns>
|
@@ -9330,7 +9380,7 @@
|
|
9330
9380
|
Orders a list of edges and returns an ordered list of vertices
|
9331
9381
|
</summary>
|
9332
9382
|
<param name="edges">The edges</param>
|
9333
|
-
<returns
|
9383
|
+
<returns>The ordered list of vertices, or an empty list if no loop could be found</returns>
|
9334
9384
|
</member>
|
9335
9385
|
<member name="M:SIMULTAN.Data.Geometry.EdgeAlgorithms.EdgeEdgeIntersection2D(SIMULTAN.Data.SimMath.SimPoint3D,SIMULTAN.Data.SimMath.SimPoint3D,SIMULTAN.Data.SimMath.SimPoint3D,SIMULTAN.Data.SimMath.SimPoint3D,System.Double)">
|
9336
9386
|
<summary>
|
@@ -9445,19 +9495,49 @@
|
|
9445
9495
|
</member>
|
9446
9496
|
<member name="M:SIMULTAN.Data.Geometry.EdgeLoopAlgorithms.Flip(SIMULTAN.Data.Geometry.EdgeLoop)">
|
9447
9497
|
<summary>
|
9448
|
-
Flips an
|
9498
|
+
Flips an <see cref="T:SIMULTAN.Data.Geometry.EdgeLoop"/>
|
9449
9499
|
</summary>
|
9450
|
-
<param name="loop">The
|
9500
|
+
<param name="loop">The <see cref="T:SIMULTAN.Data.Geometry.EdgeLoop"/></param>
|
9451
9501
|
</member>
|
9452
9502
|
<member name="M:SIMULTAN.Data.Geometry.EdgeLoopAlgorithms.Contains(SIMULTAN.Data.Geometry.EdgeLoop,SIMULTAN.Data.SimMath.SimPoint3D,System.Double,System.Double)">
|
9453
9503
|
<summary>
|
9454
|
-
Tests if an
|
9504
|
+
Tests if an <see cref="T:SIMULTAN.Data.Geometry.EdgeLoop"/> contains a point
|
9455
9505
|
</summary>
|
9456
9506
|
<param name="l">The loop</param>
|
9457
9507
|
<param name="v">The point</param>
|
9458
9508
|
<param name="tolerance">Tolerance to edges</param>
|
9459
|
-
<param name="zTolerance">Tolerance between point and the plane spanned by the
|
9460
|
-
<returns
|
9509
|
+
<param name="zTolerance">Tolerance between point and the plane spanned by the <see cref="T:SIMULTAN.Data.Geometry.EdgeLoop"/></param>
|
9510
|
+
<returns>The geometric relation</returns>
|
9511
|
+
</member>
|
9512
|
+
<member name="M:SIMULTAN.Data.Geometry.EdgeLoopAlgorithms.Contains(SIMULTAN.Data.Geometry.EdgeLoop,SIMULTAN.Data.Geometry.EdgeLoop,System.Double,System.Double)">
|
9513
|
+
<summary>
|
9514
|
+
Tests if an <see cref="T:SIMULTAN.Data.Geometry.EdgeLoop"/> contains another <see cref="T:SIMULTAN.Data.Geometry.EdgeLoop"/>
|
9515
|
+
</summary>
|
9516
|
+
<param name="loop">The <see cref="T:SIMULTAN.Data.Geometry.EdgeLoop"/></param>
|
9517
|
+
<param name="other">The other <see cref="T:SIMULTAN.Data.Geometry.EdgeLoop"/></param>
|
9518
|
+
<param name="tolerance">Tolerance to the edges</param>
|
9519
|
+
<param name="zTolerance">Tolerance between point and the plane spanned by the <see cref="T:SIMULTAN.Data.Geometry.EdgeLoop"/></param>
|
9520
|
+
<returns>The geometric relation</returns>
|
9521
|
+
</member>
|
9522
|
+
<member name="M:SIMULTAN.Data.Geometry.EdgeLoopAlgorithms.Contains(System.Collections.Generic.List{SIMULTAN.Data.Geometry.Edge},System.Collections.Generic.List{SIMULTAN.Data.Geometry.Edge},SIMULTAN.Data.SimMath.SimMatrix3D,System.Double,System.Double)">
|
9523
|
+
<summary>
|
9524
|
+
Tests if an <see cref="T:SIMULTAN.Data.Geometry.EdgeLoop"/> contains another <see cref="T:SIMULTAN.Data.Geometry.EdgeLoop"/>
|
9525
|
+
</summary>
|
9526
|
+
<param name="loop">The <see cref="T:SIMULTAN.Data.Geometry.EdgeLoop"/></param>
|
9527
|
+
<param name="other">The other <see cref="T:SIMULTAN.Data.Geometry.EdgeLoop"/></param>
|
9528
|
+
<param name="mapping">Matrix used to map the vertices into the XY-plane</param>
|
9529
|
+
<param name="tolerance">Tolerance to the edges</param>
|
9530
|
+
<param name="zTolerance">Tolerance between point and the plane spanned by the <see cref="T:SIMULTAN.Data.Geometry.EdgeLoop"/></param>
|
9531
|
+
<returns>The geometric relation</returns>
|
9532
|
+
</member>
|
9533
|
+
<member name="M:SIMULTAN.Data.Geometry.EdgeLoopAlgorithms.Extrude(SIMULTAN.Data.Geometry.EdgeLoop,System.Double,SIMULTAN.Data.SimMath.SimVector3D)">
|
9534
|
+
<summary>
|
9535
|
+
Extrudes an <see cref="T:SIMULTAN.Data.Geometry.EdgeLoop"/> by distance in normal direction.
|
9536
|
+
</summary>
|
9537
|
+
<param name="inputLoop">Loop to extrude</param>
|
9538
|
+
<param name="distance">Distance to extrude</param>
|
9539
|
+
<param name="normal">Normal direction to extrude to</param>
|
9540
|
+
<returns>All the generated geometry and the resulting end <see cref="T:SIMULTAN.Data.Geometry.EdgeLoop"/></returns>
|
9461
9541
|
</member>
|
9462
9542
|
<member name="M:SIMULTAN.Data.Geometry.EdgeLoopAlgorithms.LoopToXYMapping(SIMULTAN.Data.Geometry.EdgeLoop)">
|
9463
9543
|
<summary>
|
@@ -9589,7 +9669,7 @@
|
|
9589
9669
|
</member>
|
9590
9670
|
<member name="M:SIMULTAN.Data.Geometry.FaceAlgorithms.ContainedGeometry(SIMULTAN.Data.Geometry.Face,System.Collections.Generic.List{SIMULTAN.Data.Geometry.BaseGeometry}@)">
|
9591
9671
|
<summary>
|
9592
|
-
Returns all the geometry contained in this edge (faces + edge + vertices)
|
9672
|
+
Returns all the geometry contained in this edge (faces + edge + vertices + hole-edges + hole-vertices)
|
9593
9673
|
</summary>
|
9594
9674
|
<param name="f">The face</param>
|
9595
9675
|
<param name="geometries">The resulting geometry list</param>
|
@@ -9720,6 +9800,13 @@
|
|
9720
9800
|
<param name="faces">A list of faces to test</param>
|
9721
9801
|
<returns>True when the faces form a closed hull</returns>
|
9722
9802
|
</member>
|
9803
|
+
<member name="M:SIMULTAN.Data.Geometry.FaceAlgorithms.IsFaceOfHole(SIMULTAN.Data.Geometry.Face)">
|
9804
|
+
<summary>
|
9805
|
+
Returns if the face is the face of a hole inside another face.
|
9806
|
+
</summary>
|
9807
|
+
<param name="face">The face</param>
|
9808
|
+
<returns>True if this face is the face of a hole.</returns>
|
9809
|
+
</member>
|
9723
9810
|
<member name="M:SIMULTAN.Data.Geometry.FaceAlgorithms.FindCommonVolume(System.Collections.Generic.IEnumerable{SIMULTAN.Data.Geometry.Face},SIMULTAN.Data.Geometry.GeometryModelData)">
|
9724
9811
|
<summary>
|
9725
9812
|
Tries to find a volume which contains all faces
|
@@ -9737,6 +9824,15 @@
|
|
9737
9824
|
<param name="tolerance">Points in this distance to the plane are excluded from test</param>
|
9738
9825
|
<returns>Forward or Backward when the points are completely on one side, Undefined when the are located on both sides</returns>
|
9739
9826
|
</member>
|
9827
|
+
<member name="M:SIMULTAN.Data.Geometry.FaceAlgorithms.FindEdgeInsideDirection2D(SIMULTAN.Data.Geometry.Edge,System.Collections.Generic.IEnumerable{SIMULTAN.Data.Geometry.Edge},System.Collections.Generic.Dictionary{SIMULTAN.Data.Geometry.Vertex,SIMULTAN.Data.SimMath.SimPoint3D})">
|
9828
|
+
<summary>
|
9829
|
+
Performs a polygon inside/outside test to check which side of a 2d edge points inside the polygon and if the edge is on the outside boundary of the polygon.
|
9830
|
+
</summary>
|
9831
|
+
<param name="checkEdge">Edge to check the direction for</param>
|
9832
|
+
<param name="polygon">All edges of the polygon</param>
|
9833
|
+
<param name="vertexPosLookup">Lookup of the vertex positions that were transformed to the XY plane. Edge vertices still have their original position.</param>
|
9834
|
+
<returns>1 if the right side of the 2D edge is determined to be inside the polygon, -1 if the left side is inside and 0 if it is not a boundary edge.</returns>
|
9835
|
+
</member>
|
9740
9836
|
<member name="M:SIMULTAN.Data.Geometry.FaceAlgorithms.Perimeter(SIMULTAN.Data.Geometry.Face)">
|
9741
9837
|
<summary>
|
9742
9838
|
Calculates the perimeter of the face. Sums the parimeter of the bounding and all holes.
|
@@ -9788,6 +9884,21 @@
|
|
9788
9884
|
- extrudedReferenceFace: The top face of the extrusion of the referenceFace
|
9789
9885
|
</returns>
|
9790
9886
|
</member>
|
9887
|
+
<member name="M:SIMULTAN.Data.Geometry.FaceAlgorithms.Extrude(System.Collections.Generic.IEnumerable{SIMULTAN.Data.Geometry.Face},SIMULTAN.Data.Geometry.Face,System.Double,SIMULTAN.Data.SimMath.SimVector3D)">
|
9888
|
+
<summary>
|
9889
|
+
Extrudes a face along its normal by a given height
|
9890
|
+
</summary>
|
9891
|
+
<param name="faces">The faces to extrude. Each face is treated separately, but shared edges are extruded only once</param>
|
9892
|
+
<param name="referenceFace">A reference face, only needed to return the extruded reference face</param>
|
9893
|
+
<param name="height">The height of the extrusion</param>
|
9894
|
+
<param name="normal">Normal direction to extrude to</param>
|
9895
|
+
<returns>
|
9896
|
+
A tuple containing:
|
9897
|
+
- createdGeometry: A list of all geometries created by this operation
|
9898
|
+
- extrudedFaces: A list of the top faces of each extrusion. Order is the same as in the input face list
|
9899
|
+
- extrudedReferenceFace: The top face of the extrusion of the referenceFace
|
9900
|
+
</returns>
|
9901
|
+
</member>
|
9791
9902
|
<member name="M:SIMULTAN.Data.Geometry.FaceAlgorithms.IntersectsLine(SIMULTAN.Data.Geometry.Face,SIMULTAN.Data.SimMath.SimPoint3D,SIMULTAN.Data.SimMath.SimPoint3D,System.Double)">
|
9792
9903
|
<summary>
|
9793
9904
|
Checks whether a face is intersected by a line segment.
|
@@ -9957,6 +10068,7 @@
|
|
9957
10068
|
<param name="from">The source model</param>
|
9958
10069
|
<param name="to">The target model</param>
|
9959
10070
|
<param name="preserveIds">When set to True, the ids are kept. Only works when the ids are not used in the to model.</param>
|
10071
|
+
<returns>A tuple of dictionaries of base geometries that provides a lookup of old to new copied geometry and of old to new layers.</returns>
|
9960
10072
|
</member>
|
9961
10073
|
<member name="T:SIMULTAN.Data.Geometry.GeoReferenceAlgorithms">
|
9962
10074
|
<summary>
|
@@ -10206,8 +10318,8 @@
|
|
10206
10318
|
Tracks the merge of two base geometries.
|
10207
10319
|
a is considered the remaining one
|
10208
10320
|
</summary>
|
10209
|
-
<param name="a">One of the merged
|
10210
|
-
<param name="b">One of the merged
|
10321
|
+
<param name="a">One of the merged geometries. Considered as the remaining one.</param>
|
10322
|
+
<param name="b">One of the merged geometries. Considered as the deleted one.</param>
|
10211
10323
|
</member>
|
10212
10324
|
<member name="M:SIMULTAN.Data.Geometry.ModelCleanupAlgorithms.MergeTracker`1.MergeWith(System.Collections.Generic.List{System.ValueTuple{`0,System.Collections.Generic.HashSet{`0}}})">
|
10213
10325
|
<summary>
|
@@ -10678,11 +10790,26 @@
|
|
10678
10790
|
<param name="points">The list of points</param>
|
10679
10791
|
<returns>The minimum and maximum along each axis</returns>
|
10680
10792
|
</member>
|
10793
|
+
<member name="M:SIMULTAN.Data.Geometry.VertexAlgorithms.AdjacentFaces(SIMULTAN.Data.Geometry.Vertex,System.Collections.Generic.HashSet{SIMULTAN.Data.Geometry.Face}@)">
|
10794
|
+
<summary>
|
10795
|
+
Gets all adjacent faces of the vertex and adds them to the faces list.
|
10796
|
+
</summary>
|
10797
|
+
<param name="v">The vertex</param>
|
10798
|
+
<param name="faces">The faces list</param>
|
10799
|
+
</member>
|
10681
10800
|
<member name="T:SIMULTAN.Data.Geometry.VolumeAlgorithms">
|
10682
10801
|
<summary>
|
10683
10802
|
Provides algorithms operation on Volume instances
|
10684
10803
|
</summary>
|
10685
10804
|
</member>
|
10805
|
+
<member name="M:SIMULTAN.Data.Geometry.VolumeAlgorithms.FindHoleFaces(SIMULTAN.Data.Geometry.Volume)">
|
10806
|
+
<summary>
|
10807
|
+
Finds and returns all faces, their holes and hole faces.
|
10808
|
+
Hole faces may be null if they do not have ones.
|
10809
|
+
</summary>
|
10810
|
+
<param name="volume">The volume</param>
|
10811
|
+
<returns>All faces of holes that are in the volume.</returns>
|
10812
|
+
</member>
|
10686
10813
|
<member name="M:SIMULTAN.Data.Geometry.VolumeAlgorithms.FindConsistentOrientation(SIMULTAN.Data.Geometry.Volume)">
|
10687
10814
|
<summary>
|
10688
10815
|
Finds a consistent orientation by adjusting PFace.Orientation
|
@@ -10740,7 +10867,7 @@
|
|
10740
10867
|
<param name="vol">The volume to calculate the volume from</param>
|
10741
10868
|
<returns>The volume of the volume</returns>
|
10742
10869
|
</member>
|
10743
|
-
<member name="M:SIMULTAN.Data.Geometry.VolumeAlgorithms.SignedVolume(System.Collections.Generic.
|
10870
|
+
<member name="M:SIMULTAN.Data.Geometry.VolumeAlgorithms.SignedVolume(System.Collections.Generic.IEnumerable{System.ValueTuple{SIMULTAN.Data.Geometry.Face,SIMULTAN.Data.Geometry.GeometricOrientation}})">
|
10744
10871
|
<summary>
|
10745
10872
|
Computes the signed volume of a list of faces
|
10746
10873
|
</summary>
|
@@ -11186,6 +11313,11 @@
|
|
11186
11313
|
Gets or sets the general calculation tolerance
|
11187
11314
|
</summary>
|
11188
11315
|
</member>
|
11316
|
+
<member name="P:SIMULTAN.Data.Geometry.GeometrySettings.ToleranceSquared">
|
11317
|
+
<summary>
|
11318
|
+
Returns the squared calculation tolerance. This value is derived from <see cref="P:SIMULTAN.Data.Geometry.GeometrySettings.Tolerance"/>
|
11319
|
+
</summary>
|
11320
|
+
</member>
|
11189
11321
|
<member name="P:SIMULTAN.Data.Geometry.GeometrySettings.CalculateOffsetSurfaces">
|
11190
11322
|
<summary>
|
11191
11323
|
Specifies whether offset surfaces should be calculated
|
@@ -11393,6 +11525,11 @@
|
|
11393
11525
|
The associated face
|
11394
11526
|
</summary>
|
11395
11527
|
</member>
|
11528
|
+
<member name="P:SIMULTAN.Data.Geometry.OffsetFace.Orientation">
|
11529
|
+
<summary>
|
11530
|
+
Stores which side of the face is represented by this offset surface
|
11531
|
+
</summary>
|
11532
|
+
</member>
|
11396
11533
|
<member name="P:SIMULTAN.Data.Geometry.OffsetFace.Offset">
|
11397
11534
|
<summary>
|
11398
11535
|
The office that was used for this offset face
|
@@ -11408,21 +11545,12 @@
|
|
11408
11545
|
Stores the final boundary polygon
|
11409
11546
|
</summary>
|
11410
11547
|
</member>
|
11411
|
-
<member name="
|
11412
|
-
<summary>
|
11413
|
-
Stores additional edges for this face (e.g., side-closing edges, edges of openings, ...)
|
11414
|
-
</summary>
|
11415
|
-
</member>
|
11416
|
-
<member name="P:SIMULTAN.Data.Geometry.OffsetFace.AdditionalQuads">
|
11417
|
-
<summary>
|
11418
|
-
Stores a list of additional quads.
|
11419
|
-
</summary>
|
11420
|
-
</member>
|
11421
|
-
<member name="M:SIMULTAN.Data.Geometry.OffsetFace.#ctor(SIMULTAN.Data.Geometry.Face)">
|
11548
|
+
<member name="M:SIMULTAN.Data.Geometry.OffsetFace.#ctor(SIMULTAN.Data.Geometry.Face,SIMULTAN.Data.Geometry.GeometricOrientation)">
|
11422
11549
|
<summary>
|
11423
11550
|
Initializes a new instance of the OffsetFace class
|
11424
11551
|
</summary>
|
11425
11552
|
<param name="face">The face which is associated with this offset face</param>
|
11553
|
+
<param name="orientation">Defines which side of the face is represented by this offset surface</param>
|
11426
11554
|
</member>
|
11427
11555
|
<member name="T:SIMULTAN.Data.Geometry.OffsetModel">
|
11428
11556
|
<summary>
|
@@ -11854,6 +11982,12 @@
|
|
11854
11982
|
Stores the orientation of the face. Forward means CCW, Backward means CW
|
11855
11983
|
</summary>
|
11856
11984
|
</member>
|
11985
|
+
<member name="P:SIMULTAN.Data.Geometry.Face.BaseEdge">
|
11986
|
+
<summary>
|
11987
|
+
Base Edge of the Face as defined by the user.
|
11988
|
+
Can be used to get a consistent base direction for the Face
|
11989
|
+
</summary>
|
11990
|
+
</member>
|
11857
11991
|
<member name="P:SIMULTAN.Data.Geometry.Face.Normal">
|
11858
11992
|
<summary>
|
11859
11993
|
Returns the face normal
|
@@ -11864,17 +11998,18 @@
|
|
11864
11998
|
Returns all PFaces associated with this Face
|
11865
11999
|
</summary>
|
11866
12000
|
</member>
|
11867
|
-
<member name="M:SIMULTAN.Data.Geometry.Face.#ctor(SIMULTAN.Data.Geometry.Layer,System.String,SIMULTAN.Data.Geometry.EdgeLoop,SIMULTAN.Data.Geometry.GeometricOrientation,System.Collections.Generic.IEnumerable{SIMULTAN.Data.Geometry.EdgeLoop})">
|
12001
|
+
<member name="M:SIMULTAN.Data.Geometry.Face.#ctor(SIMULTAN.Data.Geometry.Layer,System.String,SIMULTAN.Data.Geometry.EdgeLoop,SIMULTAN.Data.Geometry.GeometricOrientation,System.Collections.Generic.IEnumerable{SIMULTAN.Data.Geometry.EdgeLoop},SIMULTAN.Data.Geometry.Edge)">
|
11868
12002
|
<summary>
|
11869
12003
|
Initializes a new instance of the Face class
|
11870
12004
|
</summary>
|
11871
12005
|
<param name="layer">The layer this object is placed on</param>
|
11872
12006
|
<param name="nameFormat">The display name (this is used as a format string for string.Format. {0} is the Id</param>
|
11873
12007
|
<param name="boundary">The boundary loop</param>
|
12008
|
+
<param name="baseEdge">Base edge of the face. Needs to be part of the boundary EdgeLoop</param>
|
11874
12009
|
<param name="orientation">Orientation of the face</param>
|
11875
12010
|
<param name="holes">A list of hole loops</param>
|
11876
12011
|
</member>
|
11877
|
-
<member name="M:SIMULTAN.Data.Geometry.Face.#ctor(System.UInt64,SIMULTAN.Data.Geometry.Layer,System.String,SIMULTAN.Data.Geometry.EdgeLoop,SIMULTAN.Data.Geometry.GeometricOrientation,System.Collections.Generic.IEnumerable{SIMULTAN.Data.Geometry.EdgeLoop})">
|
12012
|
+
<member name="M:SIMULTAN.Data.Geometry.Face.#ctor(System.UInt64,SIMULTAN.Data.Geometry.Layer,System.String,SIMULTAN.Data.Geometry.EdgeLoop,SIMULTAN.Data.Geometry.GeometricOrientation,System.Collections.Generic.IEnumerable{SIMULTAN.Data.Geometry.EdgeLoop},SIMULTAN.Data.Geometry.Edge)">
|
11878
12013
|
<summary>
|
11879
12014
|
Initializes a new instance of the Face class
|
11880
12015
|
</summary>
|
@@ -11882,6 +12017,7 @@
|
|
11882
12017
|
<param name="nameFormat">The display name (this is used as a format string for string.Format. {0} is the Id</param>
|
11883
12018
|
<param name="layer">The layer this object is placed on</param>
|
11884
12019
|
<param name="boundary">The boundary loop</param>
|
12020
|
+
<param name="baseEdge">Base edge of the face. Needs to be part of the boundary EdgeLoop</param>
|
11885
12021
|
<param name="orientation">Orientation of the face</param>
|
11886
12022
|
<param name="holes">A list of hole loops</param>
|
11887
12023
|
</member>
|
@@ -12766,6 +12902,13 @@
|
|
12766
12902
|
</summary>
|
12767
12903
|
<param name="face">The face to add</param>
|
12768
12904
|
</member>
|
12905
|
+
<member name="M:SIMULTAN.Data.Geometry.Volume.RemoveFace(SIMULTAN.Data.Geometry.Face)">
|
12906
|
+
<summary>
|
12907
|
+
Removes a face from the volume if found.
|
12908
|
+
</summary>
|
12909
|
+
<param name="face">The face to remove.</param>
|
12910
|
+
<returns>True if the face was removed, false if it could not be found.</returns>
|
12911
|
+
</member>
|
12769
12912
|
<member name="T:SIMULTAN.Data.Geometry.GeometryRelationsFileMapping">
|
12770
12913
|
<summary>
|
12771
12914
|
Mapping struct from geometry file Id to file path. Used to look up the file ids from exported geometry files
|
@@ -13051,6 +13194,13 @@
|
|
13051
13194
|
</summary>
|
13052
13195
|
<param name="model">The new model</param>
|
13053
13196
|
</member>
|
13197
|
+
<member name="M:SIMULTAN.Data.Geometry.SimGeometryModelCollection.AddGeometryModels(System.Collections.Generic.IEnumerable{SIMULTAN.Data.Geometry.GeometryModel})">
|
13198
|
+
<summary>
|
13199
|
+
Registers new GeometryModels to the store.
|
13200
|
+
Preferred as this optimizes connector creation more than adding a single one.
|
13201
|
+
</summary>
|
13202
|
+
<param name="models">The new models</param>
|
13203
|
+
</member>
|
13054
13204
|
<member name="M:SIMULTAN.Data.Geometry.SimGeometryModelCollection.RemoveGeometryModel(SIMULTAN.Data.Geometry.GeometryModel)">
|
13055
13205
|
<summary>
|
13056
13206
|
Removes a GeometryModel from the store. Only frees the model when this has been the last reference to the model.
|
@@ -13312,12 +13462,14 @@
|
|
13312
13462
|
<param name="p">Point to test</param>
|
13313
13463
|
<returns>Returns true, if the point lies inside (behind the plane)</returns>
|
13314
13464
|
</member>
|
13315
|
-
<member name="M:SIMULTAN.Data.Geometry.ClipPlane.IntersectLine(SIMULTAN.Data.SimMath.SimPoint3D,SIMULTAN.Data.SimMath.SimPoint3D)">
|
13465
|
+
<member name="M:SIMULTAN.Data.Geometry.ClipPlane.IntersectLine(SIMULTAN.Data.SimMath.SimPoint3D,SIMULTAN.Data.SimMath.SimPoint3D,System.Double,System.Double)">
|
13316
13466
|
<summary>
|
13317
13467
|
Intersects the line given as (p1- p0) with this clip plane
|
13318
13468
|
</summary>
|
13319
13469
|
<param name="p0">Start point of the line</param>
|
13320
13470
|
<param name="p1">End point of the line</param>
|
13471
|
+
<param name="epsilon">Epsilon for comparison if the edge lies in the plane</param>
|
13472
|
+
<param name="insideEpsilon">Epsilon to add or subtract to ensure that t is inside in edge cases</param>
|
13321
13473
|
<returns>
|
13322
13474
|
The intersection point and the distance t between start point and intersection point
|
13323
13475
|
If t is negative, the intersection point was not found
|
@@ -22659,6 +22811,14 @@
|
|
22659
22811
|
Delegate type for delete handlers
|
22660
22812
|
</summary>
|
22661
22813
|
</member>
|
22814
|
+
<member name="M:SIMULTAN.Data.Taxonomy.SimTaxonomyEntryReference.Matches(System.String,System.String)">
|
22815
|
+
<summary>
|
22816
|
+
Returns true when the entry key as well as the taxonomy key of this entry match the parameters
|
22817
|
+
</summary>
|
22818
|
+
<param name="taxonomyKey">The key of the taxonomy</param>
|
22819
|
+
<param name="entryKey">The key of the entry</param>
|
22820
|
+
<returns>Returns true when the entry key as well as the taxonomy key of this entry match the parameters, otherwise False</returns>
|
22821
|
+
</member>
|
22662
22822
|
<member name="T:SIMULTAN.Data.Taxonomy.SimTaxonomyEntryReferenceCollection">
|
22663
22823
|
<summary>
|
22664
22824
|
An ObservableCollection for <see cref="T:SIMULTAN.Data.Taxonomy.SimTaxonomyEntryReference"/> that automatically removes a reference if the entry gets deleted.
|
@@ -23732,6 +23892,7 @@
|
|
23732
23892
|
Adds a new <see cref="T:SIMULTAN.Data.Geometry.GeometryModel"/> to the Exchange
|
23733
23893
|
</summary>
|
23734
23894
|
<param name="model">The new geometry model</param>
|
23895
|
+
<returns>The connector that is attached to the GeometryModel</returns>
|
23735
23896
|
</member>
|
23736
23897
|
<member name="M:SIMULTAN.Exchange.ComponentGeometryExchange.RemoveGeometryModel(SIMULTAN.Data.Geometry.GeometryModel)">
|
23737
23898
|
<summary>
|
@@ -24054,6 +24215,11 @@
|
|
24054
24215
|
Handles creation/removal of other geometry connectors
|
24055
24216
|
</summary>
|
24056
24217
|
</member>
|
24218
|
+
<member name="M:SIMULTAN.Exchange.GeometryConnectors.GeometryModelConnector.InitializeConnectors">
|
24219
|
+
<summary>
|
24220
|
+
Initiliazes the connectors sources.
|
24221
|
+
</summary>
|
24222
|
+
</member>
|
24057
24223
|
<member name="M:SIMULTAN.Exchange.GeometryConnectors.GeometryModelConnector.OnPlacementAdded(SIMULTAN.Data.Components.SimInstancePlacementGeometry)">
|
24058
24224
|
<summary>
|
24059
24225
|
Called when a placement has been added which references this <see cref="P:SIMULTAN.Exchange.GeometryConnectors.GeometryModelConnector.GeometryModel"/>
|
@@ -24808,9 +24974,6 @@
|
|
24808
24974
|
Holds all data managers - for components and networks, for excel mapping rules, for value fields etc.
|
24809
24975
|
</summary>
|
24810
24976
|
</member>
|
24811
|
-
<member name="P:SIMULTAN.Projects.ExtendedProjectData.Owner">
|
24812
|
-
<inheritdoc />
|
24813
|
-
</member>
|
24814
24977
|
<member name="P:SIMULTAN.Projects.ExtendedProjectData.Project">
|
24815
24978
|
<summary>
|
24816
24979
|
The project owning all managers. It can be set only once.
|
@@ -30390,11 +30553,36 @@
|
|
30390
30553
|
<param name="writer">The writer.</param>
|
30391
30554
|
<param name="relations">The relations.</param>
|
30392
30555
|
</member>
|
30393
|
-
<member name="T:SIMULTAN.Serializer.JSON.
|
30556
|
+
<member name="T:SIMULTAN.Serializer.JSON.JSONExportHelpers">
|
30394
30557
|
<summary>
|
30395
|
-
|
30558
|
+
Class containing helper functions for the JSON export
|
30559
|
+
</summary>
|
30560
|
+
</member>
|
30561
|
+
<member name="M:SIMULTAN.Serializer.JSON.JSONExportHelpers.GetRootNetwork(SIMULTAN.Data.SimNetworks.BaseSimNetworkElement)">
|
30562
|
+
<summary>
|
30563
|
+
Finds the root network of a SimNetworkElement
|
30564
|
+
</summary>
|
30565
|
+
</member>
|
30566
|
+
<member name="T:SIMULTAN.Serializer.JSON.JSONExporter">
|
30567
|
+
<summary>
|
30568
|
+
Exporter to create JSON
|
30396
30569
|
</summary>
|
30397
30570
|
</member>
|
30571
|
+
<member name="M:SIMULTAN.Serializer.JSON.JSONExporter.Export(SIMULTAN.Projects.ProjectData,System.IO.FileInfo)">
|
30572
|
+
<summary>
|
30573
|
+
Exports the project data into a JSON file
|
30574
|
+
</summary>
|
30575
|
+
<param name="projectData">The project to export</param>
|
30576
|
+
<param name="fileToSave">The file to save the .json to</param>
|
30577
|
+
</member>
|
30578
|
+
<member name="M:SIMULTAN.Serializer.JSON.JSONExporter.ExportNetworks(SIMULTAN.Projects.ProjectData,System.Collections.Generic.List{SIMULTAN.Data.SimNetworks.SimNetwork},System.IO.FileInfo)">
|
30579
|
+
<summary>
|
30580
|
+
Exports the selected components and networks
|
30581
|
+
</summary>
|
30582
|
+
<param name="projectData">The project to export</param>
|
30583
|
+
<param name="networks">Networks to export</param>
|
30584
|
+
<param name="fileToSave">The file to save the .json to</param>
|
30585
|
+
</member>
|
30398
30586
|
<member name="T:SIMULTAN.Serializer.JSON.ProjectSerializable">
|
30399
30587
|
<summary>
|
30400
30588
|
Serializable class for the <see cref="T:SIMULTAN.Projects.ProjectData"/>
|
@@ -30420,17 +30608,17 @@
|
|
30420
30608
|
SimNetworks contained in the project
|
30421
30609
|
</summary>
|
30422
30610
|
</member>
|
30423
|
-
<member name="M:SIMULTAN.Serializer.JSON.ProjectSerializable.#ctor(SIMULTAN.
|
30611
|
+
<member name="M:SIMULTAN.Serializer.JSON.ProjectSerializable.#ctor(SIMULTAN.Projects.ProjectData)">
|
30424
30612
|
<summary>
|
30425
30613
|
To JSON serializable of <see cref="T:SIMULTAN.Projects.ProjectData"/>
|
30426
30614
|
</summary>
|
30427
|
-
<param name="
|
30615
|
+
<param name="projectData">The project to export</param>
|
30428
30616
|
</member>
|
30429
|
-
<member name="M:SIMULTAN.Serializer.JSON.ProjectSerializable.#ctor(SIMULTAN.
|
30617
|
+
<member name="M:SIMULTAN.Serializer.JSON.ProjectSerializable.#ctor(SIMULTAN.Projects.ProjectData,System.Collections.Generic.List{SIMULTAN.Serializer.JSON.SimComponentSerializable},System.Collections.Generic.List{SIMULTAN.Serializer.JSON.SimNetworkSerializable})">
|
30430
30618
|
<summary>
|
30431
30619
|
Creates a new instance of ProjectSerializable
|
30432
30620
|
</summary>
|
30433
|
-
<param name="
|
30621
|
+
<param name="projectData">The project to export</param>
|
30434
30622
|
<param name="components">Components</param>
|
30435
30623
|
<param name="networks">SimNetworks</param>
|
30436
30624
|
</member>
|
@@ -30444,11 +30632,6 @@
|
|
30444
30632
|
<see cref="T:SIMULTAN.Serializer.JSON.SimEnumParameterSerializable"/> for <see cref="T:SIMULTAN.Data.Components.SimEnumParameter"/>
|
30445
30633
|
</summary>
|
30446
30634
|
</member>
|
30447
|
-
<member name="P:SIMULTAN.Serializer.JSON.SimBaseParameterSerializable.Type">
|
30448
|
-
<summary>
|
30449
|
-
Type of the parameter
|
30450
|
-
</summary>
|
30451
|
-
</member>
|
30452
30635
|
<member name="P:SIMULTAN.Serializer.JSON.SimBaseParameterSerializable.Id">
|
30453
30636
|
<summary>
|
30454
30637
|
ID of the parameter
|
@@ -30485,6 +30668,11 @@
|
|
30485
30668
|
</summary>
|
30486
30669
|
<param name="param">The parameter which is serialized</param>
|
30487
30670
|
</member>
|
30671
|
+
<member name="M:SIMULTAN.Serializer.JSON.SimBaseParameterSerializable.#ctor">
|
30672
|
+
<summary>
|
30673
|
+
DO NOT USE. Only required for the XMLSerializer class to operate on this type
|
30674
|
+
</summary>
|
30675
|
+
</member>
|
30488
30676
|
<member name="T:SIMULTAN.Serializer.JSON.SimBoolParameterSerializable">
|
30489
30677
|
<summary>
|
30490
30678
|
JSON serializable of the <see cref="T:SIMULTAN.Data.Components.SimBoolParameter"/>
|
@@ -30625,16 +30813,6 @@
|
|
30625
30813
|
ID of the geometry
|
30626
30814
|
</summary>
|
30627
30815
|
</member>
|
30628
|
-
<member name="P:SIMULTAN.Serializer.JSON.SimInstancePlacementGeometrySerializable.Type">
|
30629
|
-
<summary>
|
30630
|
-
Type of the instance
|
30631
|
-
</summary>
|
30632
|
-
</member>
|
30633
|
-
<member name="P:SIMULTAN.Serializer.JSON.SimInstancePlacementGeometrySerializable.InstanceType">
|
30634
|
-
<summary>
|
30635
|
-
Type of the instance
|
30636
|
-
</summary>
|
30637
|
-
</member>
|
30638
30816
|
<member name="M:SIMULTAN.Serializer.JSON.SimInstancePlacementGeometrySerializable.#ctor(SIMULTAN.Data.Components.SimInstancePlacementGeometry)">
|
30639
30817
|
<summary>
|
30640
30818
|
Creates a new instance of SimInstancePlacementNetworkSerializable
|
@@ -30656,21 +30834,21 @@
|
|
30656
30834
|
Id of the network itself
|
30657
30835
|
</summary>
|
30658
30836
|
</member>
|
30659
|
-
<member name="
|
30837
|
+
<member name="M:SIMULTAN.Serializer.JSON.SimInstancePlacementNetworkSerializable.#ctor(SIMULTAN.Data.Components.SimInstancePlacementNetwork)">
|
30660
30838
|
<summary>
|
30661
|
-
|
30839
|
+
Creates a new instance of SimInstancePlacementNetworkSerializable
|
30662
30840
|
</summary>
|
30841
|
+
<param name="placement">The created instance</param>
|
30663
30842
|
</member>
|
30664
|
-
<member name="
|
30843
|
+
<member name="T:SIMULTAN.Serializer.JSON.SimInstancePlacementSerializable">
|
30665
30844
|
<summary>
|
30666
|
-
|
30845
|
+
Interface for all the Serializable classes to have something in common
|
30667
30846
|
</summary>
|
30668
30847
|
</member>
|
30669
|
-
<member name="
|
30848
|
+
<member name="P:SIMULTAN.Serializer.JSON.SimInstancePlacementSerializable.InstanceType">
|
30670
30849
|
<summary>
|
30671
|
-
|
30850
|
+
Type of the instance
|
30672
30851
|
</summary>
|
30673
|
-
<param name="placement">The created instance</param>
|
30674
30852
|
</member>
|
30675
30853
|
<member name="T:SIMULTAN.Serializer.JSON.SimInstancePlacementSimNetworkSerializable">
|
30676
30854
|
<summary>
|
@@ -30687,16 +30865,6 @@
|
|
30687
30865
|
ID of the network
|
30688
30866
|
</summary>
|
30689
30867
|
</member>
|
30690
|
-
<member name="P:SIMULTAN.Serializer.JSON.SimInstancePlacementSimNetworkSerializable.Type">
|
30691
|
-
<summary>
|
30692
|
-
Type of the instance placement
|
30693
|
-
</summary>
|
30694
|
-
</member>
|
30695
|
-
<member name="P:SIMULTAN.Serializer.JSON.SimInstancePlacementSimNetworkSerializable.InstanceType">
|
30696
|
-
<summary>
|
30697
|
-
Type of the instance
|
30698
|
-
</summary>
|
30699
|
-
</member>
|
30700
30868
|
<member name="M:SIMULTAN.Serializer.JSON.SimInstancePlacementSimNetworkSerializable.#ctor(SIMULTAN.Data.Components.SimInstancePlacementSimNetwork)">
|
30701
30869
|
<summary>
|
30702
30870
|
Creates a new instance of the SimInstancePlacementSimNetworkSerializable
|
@@ -30942,6 +31110,58 @@
|
|
30942
31110
|
<param name="network">The network for which the components should be returned</param>
|
30943
31111
|
<returns>A list of all components associated with the network</returns>
|
30944
31112
|
</member>
|
31113
|
+
<member name="T:SIMULTAN.Serializer.JSON.SimPointSerializable">
|
31114
|
+
<summary>
|
31115
|
+
Serializable representation of a <see cref="T:SIMULTAN.Data.SimMath.SimVector3D"/>
|
31116
|
+
</summary>
|
31117
|
+
</member>
|
31118
|
+
<member name="P:SIMULTAN.Serializer.JSON.SimPointSerializable.X">
|
31119
|
+
<summary>
|
31120
|
+
X Coordinate of the Vector
|
31121
|
+
</summary>
|
31122
|
+
</member>
|
31123
|
+
<member name="P:SIMULTAN.Serializer.JSON.SimPointSerializable.Y">
|
31124
|
+
<summary>
|
31125
|
+
Y Coordinate of the Vector
|
31126
|
+
</summary>
|
31127
|
+
</member>
|
31128
|
+
<member name="M:SIMULTAN.Serializer.JSON.SimPointSerializable.#ctor(SIMULTAN.Data.SimMath.SimPoint)">
|
31129
|
+
<summary>
|
31130
|
+
Initializes a new instance of the <see cref="T:SIMULTAN.Serializer.JSON.SimVector3DSerializable"/> class
|
31131
|
+
</summary>
|
31132
|
+
<param name="point">The initial vector</param>
|
31133
|
+
</member>
|
31134
|
+
<member name="T:SIMULTAN.Serializer.JSON.SimQuaternionSerializable">
|
31135
|
+
<summary>
|
31136
|
+
Serializable representation of a <see cref="T:SIMULTAN.Data.SimMath.SimQuaternion"/>
|
31137
|
+
</summary>
|
31138
|
+
</member>
|
31139
|
+
<member name="P:SIMULTAN.Serializer.JSON.SimQuaternionSerializable.X">
|
31140
|
+
<summary>
|
31141
|
+
X Coordinate of the Quaternion
|
31142
|
+
</summary>
|
31143
|
+
</member>
|
31144
|
+
<member name="P:SIMULTAN.Serializer.JSON.SimQuaternionSerializable.Y">
|
31145
|
+
<summary>
|
31146
|
+
Y Coordinate of the Quaternion
|
31147
|
+
</summary>
|
31148
|
+
</member>
|
31149
|
+
<member name="P:SIMULTAN.Serializer.JSON.SimQuaternionSerializable.Z">
|
31150
|
+
<summary>
|
31151
|
+
Z Coordinate of the Quaternion
|
31152
|
+
</summary>
|
31153
|
+
</member>
|
31154
|
+
<member name="P:SIMULTAN.Serializer.JSON.SimQuaternionSerializable.W">
|
31155
|
+
<summary>
|
31156
|
+
W Coordinate of the Quaternion
|
31157
|
+
</summary>
|
31158
|
+
</member>
|
31159
|
+
<member name="M:SIMULTAN.Serializer.JSON.SimQuaternionSerializable.#ctor(SIMULTAN.Data.SimMath.SimQuaternion)">
|
31160
|
+
<summary>
|
31161
|
+
Initializes a new instance of the <see cref="T:SIMULTAN.Serializer.JSON.SimQuaternionSerializable"/> class
|
31162
|
+
</summary>
|
31163
|
+
<param name="vector">The initial quaternion</param>
|
31164
|
+
</member>
|
30945
31165
|
<member name="T:SIMULTAN.Serializer.JSON.SimSlotSerializable">
|
30946
31166
|
<summary>
|
30947
31167
|
Serializable class for the <see cref="T:SIMULTAN.Data.Components.SimSlot"/>
|
@@ -31016,6 +31236,32 @@
|
|
31016
31236
|
</summary>
|
31017
31237
|
<param name="reference">The taxonomy entry reference to serialize</param>
|
31018
31238
|
</member>
|
31239
|
+
<member name="T:SIMULTAN.Serializer.JSON.SimVector3DSerializable">
|
31240
|
+
<summary>
|
31241
|
+
Serializable representation of a <see cref="T:SIMULTAN.Data.SimMath.SimVector3D"/>
|
31242
|
+
</summary>
|
31243
|
+
</member>
|
31244
|
+
<member name="P:SIMULTAN.Serializer.JSON.SimVector3DSerializable.X">
|
31245
|
+
<summary>
|
31246
|
+
X Coordinate of the Vector
|
31247
|
+
</summary>
|
31248
|
+
</member>
|
31249
|
+
<member name="P:SIMULTAN.Serializer.JSON.SimVector3DSerializable.Y">
|
31250
|
+
<summary>
|
31251
|
+
Y Coordinate of the Vector
|
31252
|
+
</summary>
|
31253
|
+
</member>
|
31254
|
+
<member name="P:SIMULTAN.Serializer.JSON.SimVector3DSerializable.Z">
|
31255
|
+
<summary>
|
31256
|
+
Z Coordinate of the Vector
|
31257
|
+
</summary>
|
31258
|
+
</member>
|
31259
|
+
<member name="M:SIMULTAN.Serializer.JSON.SimVector3DSerializable.#ctor(SIMULTAN.Data.SimMath.SimVector3D)">
|
31260
|
+
<summary>
|
31261
|
+
Initializes a new instance of the <see cref="T:SIMULTAN.Serializer.JSON.SimVector3DSerializable"/> class
|
31262
|
+
</summary>
|
31263
|
+
<param name="vector">The initial vector</param>
|
31264
|
+
</member>
|
31019
31265
|
<member name="T:SIMULTAN.Serializer.METADXF.MetaDxfIO">
|
31020
31266
|
<summary>
|
31021
31267
|
Provides methods for serializing project meta data into a MetaDXF File
|
@@ -31708,6 +31954,13 @@
|
|
31708
31954
|
<param name="errors">A list to which error messages are added</param>
|
31709
31955
|
<param name="offsetAlg">Defines how offset surfaces should be generated after loading</param>
|
31710
31956
|
</member>
|
31957
|
+
<member name="M:SIMULTAN.Serializer.SimGeo.SimGeoIO.CheckLayerIdsForDuplicates(SIMULTAN.Data.Geometry.GeometryModel)">
|
31958
|
+
<summary>
|
31959
|
+
Checks if the layers have the same Id as some geometry and give them new Ids if that happens.
|
31960
|
+
Sometimes the case in older models.
|
31961
|
+
</summary>
|
31962
|
+
<param name="model">the model</param>
|
31963
|
+
</member>
|
31711
31964
|
<member name="M:SIMULTAN.Serializer.SimGeo.SimGeoIO.GetEncoding(System.String)">
|
31712
31965
|
<summary>
|
31713
31966
|
Determines a text file's encoding by analyzing its byte order mark (BOM).
|
@@ -31915,58 +32168,63 @@
|
|
31915
32168
|
<param name="taxonomies">The taxonomies to export</param>
|
31916
32169
|
<param name="projectData">The project data where they originate from</param>
|
31917
32170
|
</member>
|
31918
|
-
<member name="T:SIMULTAN.Serializer.
|
32171
|
+
<member name="T:SIMULTAN.Serializer.XMI.XMIExporter">
|
31919
32172
|
<summary>
|
31920
|
-
|
32173
|
+
Exporter for the XMI format. Either exports the whole project or just a selected network with all attached data
|
31921
32174
|
</summary>
|
31922
32175
|
</member>
|
31923
|
-
<member name="M:SIMULTAN.Serializer.
|
32176
|
+
<member name="M:SIMULTAN.Serializer.XMI.XMIExporter.Export(SIMULTAN.Projects.ProjectData,System.IO.FileInfo)">
|
31924
32177
|
<summary>
|
31925
|
-
|
32178
|
+
Exports the whole project to the XMI format
|
31926
32179
|
</summary>
|
31927
|
-
<
|
31928
|
-
<param name="
|
31929
|
-
<param name="key"></param>
|
31930
|
-
<param name="value"></param>
|
32180
|
+
<param name="projectData">The data to export</param>
|
32181
|
+
<param name="fileToSave">Location of the target file. Has to have the .xmi extension</param>
|
31931
32182
|
</member>
|
31932
|
-
<member name="M:SIMULTAN.Serializer.
|
32183
|
+
<member name="M:SIMULTAN.Serializer.XMI.XMIExporter.Export(SIMULTAN.Projects.ProjectData,System.Collections.Generic.IEnumerable{SIMULTAN.Data.SimNetworks.SimNetwork},System.IO.FileInfo)">
|
31933
32184
|
<summary>
|
31934
|
-
|
32185
|
+
Exports some networks with their attached data to the XMI format
|
31935
32186
|
</summary>
|
31936
|
-
<param name="
|
31937
|
-
<param name="
|
31938
|
-
<param name="
|
31939
|
-
<returns>True when the xpath has selected an element, False otherwise</returns>
|
32187
|
+
<param name="projectData">The data to export</param>
|
32188
|
+
<param name="networks">The networks to export</param>
|
32189
|
+
<param name="fileToSave">Location of the target file. Has to have the .xmi extension</param>
|
31940
32190
|
</member>
|
31941
|
-
<member name="
|
32191
|
+
<member name="M:SIMULTAN.Serializer.XMI.XMIExporter.Export(SIMULTAN.Projects.ProjectData,System.IO.TextWriter)">
|
31942
32192
|
<summary>
|
31943
|
-
|
32193
|
+
Exports the whole project to the XMI format
|
31944
32194
|
</summary>
|
32195
|
+
<param name="projectData">The data to export</param>
|
32196
|
+
<param name="writer">The text writer into which the XMI data should be written</param>
|
31945
32197
|
</member>
|
31946
|
-
<member name="M:SIMULTAN.
|
32198
|
+
<member name="M:SIMULTAN.Serializer.XMI.XMIExporter.Export(SIMULTAN.Projects.ProjectData,System.Collections.Generic.IEnumerable{SIMULTAN.Data.SimNetworks.SimNetwork},System.IO.TextWriter)">
|
31947
32199
|
<summary>
|
31948
|
-
|
32200
|
+
Exports some networks with their attached data to the XMI format
|
31949
32201
|
</summary>
|
32202
|
+
<param name="projectData">The data to export</param>
|
32203
|
+
<param name="networks">The networks to export</param>
|
32204
|
+
<param name="writer">The text writer into which the XMI data should be written</param>
|
31950
32205
|
</member>
|
31951
|
-
<member name="T:SIMULTAN.
|
32206
|
+
<member name="T:SIMULTAN.Serializer.XMLIOExtensions">
|
31952
32207
|
<summary>
|
31953
|
-
|
32208
|
+
Contains extensions methods for XML classes
|
31954
32209
|
</summary>
|
31955
32210
|
</member>
|
31956
|
-
<member name="M:SIMULTAN.
|
32211
|
+
<member name="M:SIMULTAN.Serializer.XMLIOExtensions.WriteKeyValue``1(System.Xml.XmlWriter,System.String,``0)">
|
31957
32212
|
<summary>
|
31958
|
-
|
32213
|
+
Writes a Xml element containing "<key>value</key>"
|
31959
32214
|
</summary>
|
31960
|
-
<
|
31961
|
-
<param name="
|
32215
|
+
<typeparam name="T"></typeparam>
|
32216
|
+
<param name="sw"></param>
|
32217
|
+
<param name="key"></param>
|
32218
|
+
<param name="value"></param>
|
31962
32219
|
</member>
|
31963
|
-
<member name="M:SIMULTAN.
|
32220
|
+
<member name="M:SIMULTAN.Serializer.XMLIOExtensions.LoadInnerText(System.Xml.XmlElement,System.String,System.Action{System.String})">
|
31964
32221
|
<summary>
|
31965
|
-
|
32222
|
+
Loads an xml node and converts the content
|
31966
32223
|
</summary>
|
31967
|
-
<param name="
|
31968
|
-
<param name="
|
31969
|
-
<param name="
|
32224
|
+
<param name="node">The XMLElement onto which the xpath is applied</param>
|
32225
|
+
<param name="xpath">The xpath expression</param>
|
32226
|
+
<param name="converter">Convert to convert the content string</param>
|
32227
|
+
<returns>True when the xpath has selected an element, False otherwise</returns>
|
31970
32228
|
</member>
|
31971
32229
|
<member name="T:SIMULTAN.Utils.AdmissibilityQueries">
|
31972
32230
|
<summary>
|
@@ -32186,7 +32444,7 @@
|
|
32186
32444
|
<param name="collection">The collection</param>
|
32187
32445
|
<param name="predicate">Predicate to determine which elements will be removed</param>
|
32188
32446
|
</member>
|
32189
|
-
<member name="M:SIMULTAN.Utils.CollectionExtensions.RemoveWhere``1(System.Collections.Generic.
|
32447
|
+
<member name="M:SIMULTAN.Utils.CollectionExtensions.RemoveWhere``1(System.Collections.Generic.IList{``0},System.Func{``0,System.Boolean})">
|
32190
32448
|
<summary>
|
32191
32449
|
Removes all items from a collection that fulfill the predicate
|
32192
32450
|
</summary>
|
@@ -32203,7 +32461,7 @@
|
|
32203
32461
|
<param name="predicate">Predicate to determine which elements will be removed</param>
|
32204
32462
|
<param name="removeAction">Action that gets called on all elements that are removed</param>
|
32205
32463
|
</member>
|
32206
|
-
<member name="M:SIMULTAN.Utils.CollectionExtensions.RemoveWhere``1(System.Collections.Generic.
|
32464
|
+
<member name="M:SIMULTAN.Utils.CollectionExtensions.RemoveWhere``1(System.Collections.Generic.IList{``0},System.Func{``0,System.Boolean},System.Action{``0})">
|
32207
32465
|
<summary>
|
32208
32466
|
Removes all items from a collection that fulfill the predicate
|
32209
32467
|
</summary>
|
@@ -32342,6 +32600,15 @@
|
|
32342
32600
|
<param name="result">Contains the element at this index (or the default value when no such item exists)</param>
|
32343
32601
|
<returns>True when the collection contains an item with the given index, otherwise False</returns>
|
32344
32602
|
</member>
|
32603
|
+
<member name="M:SIMULTAN.Utils.CollectionExtensions.IndicesWhere``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean})">
|
32604
|
+
<summary>
|
32605
|
+
Searches through a collection and returns the indices at which the predicate matches
|
32606
|
+
</summary>
|
32607
|
+
<typeparam name="T">Type of the collection items</typeparam>
|
32608
|
+
<param name="source">The collection</param>
|
32609
|
+
<param name="predicate">Predicate to search for</param>
|
32610
|
+
<returns>The indicies in the collection at which the predicate returned True</returns>
|
32611
|
+
</member>
|
32345
32612
|
<member name="T:SIMULTAN.Utils.Collections.ElectivelyObservableCollection`1">
|
32346
32613
|
<summary>
|
32347
32614
|
Observable collection that allows suppressing the CollectionChanged event w/o side-effects. The default state does not suppress events.
|