@bentley/open-site-schema 1.0.25-dev.5 → 1.0.25-dev.6

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.
@@ -78,6 +78,12 @@
78
78
 
79
79
  <PropertyCategory typeName="SurfaceControl" displayLabel="Surface Control" priority="0" />
80
80
 
81
+ <PropertyCategory typeName="EventPoint_Anchor" displayLabel="Event Point" priority="0" />
82
+ <PropertyCategory typeName="DistanceAnchorAspect_Distance" displayLabel="Distance" priority="0" />
83
+ <PropertyCategory typeName="PercentAnchorAspect_Percent" displayLabel="Percent" priority="0" />
84
+ <PropertyCategory typeName="RayAnchorAspect_Ray" displayLabel="Ray" priority="0" />
85
+ <PropertyCategory typeName="ClosestAnchorAspect_Closest" displayLabel="Closest" priority="0" />
86
+
81
87
  <ECEnumeration typeName="IslandType" backingTypeName="int" isStrict="true" displayLabel="Island Type" description="Describes the parking island construction type.">
82
88
  <ECEnumerator value="0" name="UNSET" displayLabel="Not Set" />
83
89
  <ECEnumerator value="1" name="LANDSCAPED" displayLabel="Landscaped" />
@@ -472,6 +478,75 @@
472
478
  <ECProperty propertyName="IslandWidth" minimumValue="0" maximumValue="304.8" typeName="double" category="ParkingIslandVertex_Island" kindOfQuantity="cvu:LENGTH" displayLabel="Island Width" description="Defines the island override for it's width." />
473
479
  </ECEntityClass>
474
480
 
481
+ <ECEntityClass typeName="EventPoint" modifier="Sealed" displayLabel="Event Point" description="A rule-driven point along a wire that resolves to a location each solve, subdividing the affected side into spans.">
482
+ <BaseClass>Vertex</BaseClass>
483
+ </ECEntityClass>
484
+
485
+ <ECEntityClass typeName="ParametricAnchorAspect" modifier="Abstract" displayLabel="Parametric Anchor" description="Base for the authored anchor-rule parameters of an EventPoint; the concrete subclass identifies the anchor mode.">
486
+ <BaseClass>bis:ElementUniqueAspect</BaseClass>
487
+
488
+ <ECNavigationProperty propertyName="StartVertex" relationshipName="EventPointAnchorStartsAtVertex" direction="Forward" category="EventPoint_Anchor" displayLabel="Start Vertex" description="Primary anchor vertex (or EventPoint) the rule measures from. On Ray/Closest, StartPoint is used instead when this is unset (authored input)." />
489
+ </ECEntityClass>
490
+
491
+ <ECEntityClass typeName="DirectedAnchorAspect" modifier="Abstract" displayLabel="Directed Anchor" description="Base for anchor modes defined by a directed pair of anchors (Start then End).">
492
+ <BaseClass>ParametricAnchorAspect</BaseClass>
493
+
494
+ <ECNavigationProperty propertyName="EndVertex" relationshipName="EventPointAnchorEndsAtVertex" direction="Forward" category="EventPoint_Anchor" displayLabel="End Vertex" description="Second anchor vertex (or EventPoint) that, with StartVertex, gives the direction. On Ray, EndPoint is used instead when this is unset (authored input)." />
495
+ </ECEntityClass>
496
+
497
+ <ECEntityClass typeName="DistanceAnchorAspect" modifier="Sealed" displayLabel="Distance Anchor" description="Distance mode: a signed arc-length from StartVertex along the wire.">
498
+ <BaseClass>ParametricAnchorAspect</BaseClass>
499
+
500
+ <ECProperty propertyName="Distance" typeName="double" kindOfQuantity="cvu:LENGTH" category="DistanceAnchorAspect_Distance" displayLabel="Distance" description="Signed arc-length from StartVertex along the wire; positive is wire-forward, negative is wire-backward (authored input)." />
501
+ </ECEntityClass>
502
+
503
+ <ECEntityClass typeName="ClosestAnchorAspect" modifier="Sealed" displayLabel="Closest Anchor" description="Closest mode: the point on the wire closest to the anchor.">
504
+ <BaseClass>ParametricAnchorAspect</BaseClass>
505
+
506
+ <ECProperty propertyName="StartPoint" typeName="Point3d" category="ClosestAnchorAspect_Closest" displayLabel="Anchor Point" description="World-space anchor whose nearest point on the wire positions the EventPoint; read only when StartVertex is unset (authored input)." />
507
+ </ECEntityClass>
508
+
509
+ <ECEntityClass typeName="PercentAnchorAspect" modifier="Sealed" displayLabel="Percent Anchor" description="Percent mode: a fractional position from StartVertex toward EndVertex.">
510
+ <BaseClass>DirectedAnchorAspect</BaseClass>
511
+
512
+ <ECProperty propertyName="Percent" minimumValue="0" maximumValue="1" kindOfQuantity="cvu:PERCENTAGE" typeName="double" category="PercentAnchorAspect_Percent" displayLabel="Percent" description="Fractional position (0..1) along the wire from StartVertex toward EndVertex; direction comes from anchor order (authored input)." />
513
+ </ECEntityClass>
514
+
515
+ <ECEntityClass typeName="RayAnchorAspect" modifier="Sealed" displayLabel="Ray Anchor" description="Ray mode: a ray from Start to End projected onto the wire.">
516
+ <BaseClass>DirectedAnchorAspect</BaseClass>
517
+
518
+ <ECProperty propertyName="StartPoint" typeName="Point3d" category="RayAnchorAspect_Ray" displayLabel="Ray Start" description="World-space ray start; read only when StartVertex is unset (authored input)." />
519
+ <ECProperty propertyName="EndPoint" typeName="Point3d" category="RayAnchorAspect_Ray" displayLabel="Ray End" description="World-space ray end; the ray points from Start toward End and is projected onto the wire. Read only when EndVertex is unset (authored input)." />
520
+ </ECEntityClass>
521
+
522
+ <ECRelationshipClass typeName="EventPointOwnsParametricAnchorAspect" modifier="Sealed" strength="embedding">
523
+ <BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
524
+ <Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
525
+ <Class class="EventPoint" />
526
+ </Source>
527
+ <Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="true">
528
+ <Class class="ParametricAnchorAspect" />
529
+ </Target>
530
+ </ECRelationshipClass>
531
+
532
+ <ECRelationshipClass typeName="EventPointAnchorStartsAtVertex" strength="referencing" modifier="Sealed">
533
+ <Source multiplicity="(0..*)" roleLabel="starts at" polymorphic="true">
534
+ <Class class="ParametricAnchorAspect" />
535
+ </Source>
536
+ <Target multiplicity="(0..1)" roleLabel="is start anchor for" polymorphic="true">
537
+ <Class class="Vertex" />
538
+ </Target>
539
+ </ECRelationshipClass>
540
+
541
+ <ECRelationshipClass typeName="EventPointAnchorEndsAtVertex" strength="referencing" modifier="Sealed">
542
+ <Source multiplicity="(0..*)" roleLabel="ends at" polymorphic="true">
543
+ <Class class="DirectedAnchorAspect" />
544
+ </Source>
545
+ <Target multiplicity="(0..1)" roleLabel="is end anchor for" polymorphic="true">
546
+ <Class class="Vertex" />
547
+ </Target>
548
+ </ECRelationshipClass>
549
+
475
550
  <ECEntityClass typeName="Edge" modifier="Abstract" displayLabel="Edge">
476
551
  <BaseClass>bis:SpatialLocationElement</BaseClass>
477
552
 
@@ -1024,6 +1099,26 @@
1024
1099
  </Target>
1025
1100
  </ECRelationshipClass>
1026
1101
 
1102
+ <ECRelationshipClass typeName="WireOwnsEventPoints" strength="embedding" strengthDirection="Forward" modifier="Sealed">
1103
+ <BaseClass>bis:ElementOwnsChildElements</BaseClass>
1104
+ <Source multiplicity="(1..1)" roleLabel="owns" polymorphic="true">
1105
+ <Class class="Wire" />
1106
+ </Source>
1107
+ <Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="false">
1108
+ <Class class="EventPoint" />
1109
+ </Target>
1110
+ </ECRelationshipClass>
1111
+
1112
+ <ECRelationshipClass typeName="EdgeOwnsSpanEdges" strength="embedding" strengthDirection="Forward" modifier="Sealed">
1113
+ <BaseClass>bis:ElementOwnsChildElements</BaseClass>
1114
+ <Source multiplicity="(1..1)" roleLabel="owns" polymorphic="true">
1115
+ <Class class="Edge" />
1116
+ </Source>
1117
+ <Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="true">
1118
+ <Class class="Edge" />
1119
+ </Target>
1120
+ </ECRelationshipClass>
1121
+
1027
1122
  <ECRelationshipClass typeName="LayoutParkingAreaOwnsParkingDirectionPath" strength="embedding" strengthDirection="Forward" modifier="Sealed">
1028
1123
  <BaseClass>bis:ElementOwnsChildElements</BaseClass>
1029
1124
  <Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bentley/open-site-schema",
3
3
  "license": "MIT",
4
- "version": "1.0.25-dev.5",
4
+ "version": "1.0.25-dev.6",
5
5
  "homepage": "https://www.itwinjs.org/",
6
6
  "keywords": [
7
7
  "Bentley",