@bldrs-ai/conway 1.520.1486 → 1.528.1490
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.
- package/compiled/examples/browser-bundled.cjs +26 -5
- package/compiled/examples/cli-bundled.cjs +26 -5
- package/compiled/examples/cli-step-bundled.cjs +43 -22
- package/compiled/examples/validator-bundled.cjs +26 -5
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/b_spline_curve.gen.d.ts +2 -2
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/b_spline_curve.gen.d.ts.map +1 -1
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/b_spline_curve.gen.js +2 -2
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/b_spline_surface.gen.d.ts +3 -3
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/b_spline_surface.gen.d.ts.map +1 -1
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/b_spline_surface.gen.js +3 -3
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/composite_curve.gen.d.ts +1 -1
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/composite_curve.gen.d.ts.map +1 -1
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/composite_curve.gen.js +1 -1
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/offset_curve_2d.gen.d.ts +1 -1
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/offset_curve_2d.gen.d.ts.map +1 -1
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/offset_curve_2d.gen.js +1 -1
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/offset_curve_3d.gen.d.ts +1 -1
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/offset_curve_3d.gen.d.ts.map +1 -1
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/offset_curve_3d.gen.js +1 -1
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/offset_surface.gen.d.ts +1 -1
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/offset_surface.gen.d.ts.map +1 -1
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/offset_surface.gen.js +1 -1
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/schema_ap214.gen.js +11 -11
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/shape_aspect.gen.d.ts +1 -1
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/shape_aspect.gen.d.ts.map +1 -1
- package/compiled/src/AP214E3_2010/AP214E3_2010_gen/shape_aspect.gen.js +1 -1
- package/compiled/src/AP214E3_2010/ap214_logical_attribute.test.d.ts +2 -0
- package/compiled/src/AP214E3_2010/ap214_logical_attribute.test.d.ts.map +1 -0
- package/compiled/src/AP214E3_2010/ap214_logical_attribute.test.js +114 -0
- package/compiled/src/ifc/ifc4_gen/IfcLogical.gen.d.ts +1 -1
- package/compiled/src/ifc/ifc4_gen/IfcLogical.gen.d.ts.map +1 -1
- package/compiled/src/ifc/ifc4_gen/IfcLogical.gen.js +1 -1
- package/compiled/src/ifc/ifc4_gen/IfcRelInterferesElements.gen.d.ts +1 -1
- package/compiled/src/ifc/ifc4_gen/IfcRelInterferesElements.gen.d.ts.map +1 -1
- package/compiled/src/ifc/ifc4_gen/IfcRelInterferesElements.gen.js +1 -1
- package/compiled/src/ifc/ifc4_gen/schema_ifc.gen.js +2 -2
- package/compiled/src/step/step_entity_base.d.ts +10 -3
- package/compiled/src/step/step_entity_base.d.ts.map +1 -1
- package/compiled/src/step/step_entity_base.js +21 -0
- package/compiled/src/version/version.js +1 -1
- package/compiled/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -30,7 +30,7 @@ var import_node_process = require("node:process");
|
|
|
30
30
|
var readline = __toESM(require("node:readline"), 1);
|
|
31
31
|
|
|
32
32
|
// compiled/src/version/version.js
|
|
33
|
-
var versionString = "Conway v1.
|
|
33
|
+
var versionString = "Conway v1.528.1490";
|
|
34
34
|
|
|
35
35
|
// compiled/dependencies/conway-geom/interface/conway_geometry.js
|
|
36
36
|
var wasmType = "";
|
|
@@ -11282,6 +11282,27 @@ var StepEntityBase = class {
|
|
|
11282
11282
|
}
|
|
11283
11283
|
return value;
|
|
11284
11284
|
}
|
|
11285
|
+
/**
|
|
11286
|
+
* Extract a number at the particular vtable offset (i.e. the position
|
|
11287
|
+
* in the matching step object).
|
|
11288
|
+
*
|
|
11289
|
+
* Used by other extraction methods with wrappers to perform
|
|
11290
|
+
* semantically correct extraction.
|
|
11291
|
+
*
|
|
11292
|
+
* Unlike the other extractors this has a single signature rather than an
|
|
11293
|
+
* optional/non-optional overload pair, because LOGICAL is three-valued:
|
|
11294
|
+
* `.U.` is a legitimate value that reads as null, so a non-optional LOGICAL
|
|
11295
|
+
* is null-valued too and `optional` only decides whether a *missing* value
|
|
11296
|
+
* throws. The old `optional: false` overload promised a bare `boolean` and
|
|
11297
|
+
* was a lie for exactly the `.U.` case this extractor exists to handle.
|
|
11298
|
+
*
|
|
11299
|
+
* @param offset The offset in the vtable to extract from
|
|
11300
|
+
* @param baseOffset The base offset in the vtable to extract from
|
|
11301
|
+
* @param depth The depth of the vtable to extract from
|
|
11302
|
+
* @param optional Is this an optional field?
|
|
11303
|
+
* @return {boolean | null} The extracted logical, or null for `.U.` and for
|
|
11304
|
+
* an absent optional.
|
|
11305
|
+
*/
|
|
11285
11306
|
extractLogical(offset, baseOffset, depth, optional) {
|
|
11286
11307
|
const [cursor, endCursor, buffer] = this.getOffsetAndEndCursor(offset, baseOffset, depth);
|
|
11287
11308
|
const value = stepExtractLogical(buffer, cursor, endCursor);
|
|
@@ -15423,7 +15444,7 @@ var IfcLogical = class extends StepEntityBase {
|
|
|
15423
15444
|
}
|
|
15424
15445
|
get Value() {
|
|
15425
15446
|
if (this.Value_ === void 0) {
|
|
15426
|
-
this.Value_ = this.
|
|
15447
|
+
this.Value_ = this.extractLogical(0, 0, 0, false);
|
|
15427
15448
|
}
|
|
15428
15449
|
return this.Value_;
|
|
15429
15450
|
}
|
|
@@ -26545,7 +26566,7 @@ var IfcRelInterferesElements = class extends IfcRelConnects {
|
|
|
26545
26566
|
}
|
|
26546
26567
|
get ImpliedOrder() {
|
|
26547
26568
|
if (this.ImpliedOrder_ === void 0) {
|
|
26548
|
-
this.ImpliedOrder_ = this.
|
|
26569
|
+
this.ImpliedOrder_ = this.extractLogical(8, 4, 3, false);
|
|
26549
26570
|
}
|
|
26550
26571
|
return this.ImpliedOrder_;
|
|
26551
26572
|
}
|
|
@@ -64813,7 +64834,7 @@ var descriptions = [
|
|
|
64813
64834
|
},
|
|
64814
64835
|
ImpliedOrder: {
|
|
64815
64836
|
kind: f.BOOLEAN,
|
|
64816
|
-
optional:
|
|
64837
|
+
optional: true,
|
|
64817
64838
|
derived: false,
|
|
64818
64839
|
offset: 8
|
|
64819
64840
|
}
|
|
@@ -69785,7 +69806,7 @@ var descriptions = [
|
|
|
69785
69806
|
fields: {
|
|
69786
69807
|
Value: {
|
|
69787
69808
|
kind: f.BOOLEAN,
|
|
69788
|
-
optional:
|
|
69809
|
+
optional: true,
|
|
69789
69810
|
derived: false,
|
|
69790
69811
|
offset: 0
|
|
69791
69812
|
}
|
|
@@ -14965,7 +14965,7 @@ ${t5.join("\n")}` : "";
|
|
|
14965
14965
|
var import_process = require("process");
|
|
14966
14966
|
|
|
14967
14967
|
// compiled/src/version/version.js
|
|
14968
|
-
var versionString = "Conway v1.
|
|
14968
|
+
var versionString = "Conway v1.528.1490";
|
|
14969
14969
|
|
|
14970
14970
|
// compiled/dependencies/conway-geom/interface/conway_geometry.js
|
|
14971
14971
|
function pThreadsAllowed() {
|
|
@@ -27219,6 +27219,27 @@ var StepEntityBase = class {
|
|
|
27219
27219
|
}
|
|
27220
27220
|
return value;
|
|
27221
27221
|
}
|
|
27222
|
+
/**
|
|
27223
|
+
* Extract a number at the particular vtable offset (i.e. the position
|
|
27224
|
+
* in the matching step object).
|
|
27225
|
+
*
|
|
27226
|
+
* Used by other extraction methods with wrappers to perform
|
|
27227
|
+
* semantically correct extraction.
|
|
27228
|
+
*
|
|
27229
|
+
* Unlike the other extractors this has a single signature rather than an
|
|
27230
|
+
* optional/non-optional overload pair, because LOGICAL is three-valued:
|
|
27231
|
+
* `.U.` is a legitimate value that reads as null, so a non-optional LOGICAL
|
|
27232
|
+
* is null-valued too and `optional` only decides whether a *missing* value
|
|
27233
|
+
* throws. The old `optional: false` overload promised a bare `boolean` and
|
|
27234
|
+
* was a lie for exactly the `.U.` case this extractor exists to handle.
|
|
27235
|
+
*
|
|
27236
|
+
* @param offset The offset in the vtable to extract from
|
|
27237
|
+
* @param baseOffset The base offset in the vtable to extract from
|
|
27238
|
+
* @param depth The depth of the vtable to extract from
|
|
27239
|
+
* @param optional Is this an optional field?
|
|
27240
|
+
* @return {boolean | null} The extracted logical, or null for `.U.` and for
|
|
27241
|
+
* an absent optional.
|
|
27242
|
+
*/
|
|
27222
27243
|
extractLogical(offset, baseOffset, depth, optional) {
|
|
27223
27244
|
const [cursor, endCursor, buffer] = this.getOffsetAndEndCursor(offset, baseOffset, depth);
|
|
27224
27245
|
const value = stepExtractLogical(buffer, cursor, endCursor);
|
|
@@ -31360,7 +31381,7 @@ var IfcLogical = class extends StepEntityBase {
|
|
|
31360
31381
|
}
|
|
31361
31382
|
get Value() {
|
|
31362
31383
|
if (this.Value_ === void 0) {
|
|
31363
|
-
this.Value_ = this.
|
|
31384
|
+
this.Value_ = this.extractLogical(0, 0, 0, false);
|
|
31364
31385
|
}
|
|
31365
31386
|
return this.Value_;
|
|
31366
31387
|
}
|
|
@@ -42482,7 +42503,7 @@ var IfcRelInterferesElements = class extends IfcRelConnects {
|
|
|
42482
42503
|
}
|
|
42483
42504
|
get ImpliedOrder() {
|
|
42484
42505
|
if (this.ImpliedOrder_ === void 0) {
|
|
42485
|
-
this.ImpliedOrder_ = this.
|
|
42506
|
+
this.ImpliedOrder_ = this.extractLogical(8, 4, 3, false);
|
|
42486
42507
|
}
|
|
42487
42508
|
return this.ImpliedOrder_;
|
|
42488
42509
|
}
|
|
@@ -80750,7 +80771,7 @@ var descriptions = [
|
|
|
80750
80771
|
},
|
|
80751
80772
|
ImpliedOrder: {
|
|
80752
80773
|
kind: f.BOOLEAN,
|
|
80753
|
-
optional:
|
|
80774
|
+
optional: true,
|
|
80754
80775
|
derived: false,
|
|
80755
80776
|
offset: 8
|
|
80756
80777
|
}
|
|
@@ -85722,7 +85743,7 @@ var descriptions = [
|
|
|
85722
85743
|
fields: {
|
|
85723
85744
|
Value: {
|
|
85724
85745
|
kind: f.BOOLEAN,
|
|
85725
|
-
optional:
|
|
85746
|
+
optional: true,
|
|
85726
85747
|
derived: false,
|
|
85727
85748
|
offset: 0
|
|
85728
85749
|
}
|
|
@@ -15943,7 +15943,7 @@ var ParsingBuffer = class {
|
|
|
15943
15943
|
};
|
|
15944
15944
|
|
|
15945
15945
|
// compiled/src/version/version.js
|
|
15946
|
-
var versionString = "Conway v1.
|
|
15946
|
+
var versionString = "Conway v1.528.1490";
|
|
15947
15947
|
|
|
15948
15948
|
// compiled/dependencies/conway-geom/interface/conway_geometry.js
|
|
15949
15949
|
function pThreadsAllowed() {
|
|
@@ -23107,6 +23107,27 @@ var StepEntityBase = class {
|
|
|
23107
23107
|
}
|
|
23108
23108
|
return value;
|
|
23109
23109
|
}
|
|
23110
|
+
/**
|
|
23111
|
+
* Extract a number at the particular vtable offset (i.e. the position
|
|
23112
|
+
* in the matching step object).
|
|
23113
|
+
*
|
|
23114
|
+
* Used by other extraction methods with wrappers to perform
|
|
23115
|
+
* semantically correct extraction.
|
|
23116
|
+
*
|
|
23117
|
+
* Unlike the other extractors this has a single signature rather than an
|
|
23118
|
+
* optional/non-optional overload pair, because LOGICAL is three-valued:
|
|
23119
|
+
* `.U.` is a legitimate value that reads as null, so a non-optional LOGICAL
|
|
23120
|
+
* is null-valued too and `optional` only decides whether a *missing* value
|
|
23121
|
+
* throws. The old `optional: false` overload promised a bare `boolean` and
|
|
23122
|
+
* was a lie for exactly the `.U.` case this extractor exists to handle.
|
|
23123
|
+
*
|
|
23124
|
+
* @param offset The offset in the vtable to extract from
|
|
23125
|
+
* @param baseOffset The base offset in the vtable to extract from
|
|
23126
|
+
* @param depth The depth of the vtable to extract from
|
|
23127
|
+
* @param optional Is this an optional field?
|
|
23128
|
+
* @return {boolean | null} The extracted logical, or null for `.U.` and for
|
|
23129
|
+
* an absent optional.
|
|
23130
|
+
*/
|
|
23110
23131
|
extractLogical(offset, baseOffset, depth, optional) {
|
|
23111
23132
|
const [cursor, endCursor, buffer] = this.getOffsetAndEndCursor(offset, baseOffset, depth);
|
|
23112
23133
|
const value = stepExtractLogical(buffer, cursor, endCursor);
|
|
@@ -24776,7 +24797,7 @@ var shape_aspect = class _shape_aspect extends StepEntityBase {
|
|
|
24776
24797
|
}
|
|
24777
24798
|
get product_definitional() {
|
|
24778
24799
|
if (this.product_definitional_ === void 0) {
|
|
24779
|
-
this.product_definitional_ = this.
|
|
24800
|
+
this.product_definitional_ = this.extractLogical(3, 0, 0, false);
|
|
24780
24801
|
}
|
|
24781
24802
|
return this.product_definitional_;
|
|
24782
24803
|
}
|
|
@@ -47613,7 +47634,7 @@ var offset_curve_2d = class _offset_curve_2d extends curve {
|
|
|
47613
47634
|
}
|
|
47614
47635
|
get self_intersect() {
|
|
47615
47636
|
if (this.self_intersect_ === void 0) {
|
|
47616
|
-
this.self_intersect_ = this.
|
|
47637
|
+
this.self_intersect_ = this.extractLogical(3, 1, 3, false);
|
|
47617
47638
|
}
|
|
47618
47639
|
return this.self_intersect_;
|
|
47619
47640
|
}
|
|
@@ -47652,7 +47673,7 @@ var offset_curve_3d = class _offset_curve_3d extends curve {
|
|
|
47652
47673
|
}
|
|
47653
47674
|
get self_intersect() {
|
|
47654
47675
|
if (this.self_intersect_ === void 0) {
|
|
47655
|
-
this.self_intersect_ = this.
|
|
47676
|
+
this.self_intersect_ = this.extractLogical(3, 1, 3, false);
|
|
47656
47677
|
}
|
|
47657
47678
|
return this.self_intersect_;
|
|
47658
47679
|
}
|
|
@@ -48699,7 +48720,7 @@ var offset_surface = class _offset_surface extends surface {
|
|
|
48699
48720
|
}
|
|
48700
48721
|
get self_intersect() {
|
|
48701
48722
|
if (this.self_intersect_ === void 0) {
|
|
48702
|
-
this.self_intersect_ = this.
|
|
48723
|
+
this.self_intersect_ = this.extractLogical(3, 1, 3, false);
|
|
48703
48724
|
}
|
|
48704
48725
|
return this.self_intersect_;
|
|
48705
48726
|
}
|
|
@@ -49470,13 +49491,13 @@ var b_spline_curve = class _b_spline_curve extends bounded_curve {
|
|
|
49470
49491
|
}
|
|
49471
49492
|
get closed_curve() {
|
|
49472
49493
|
if (this.closed_curve_ === void 0) {
|
|
49473
|
-
this.closed_curve_ = this.
|
|
49494
|
+
this.closed_curve_ = this.extractLogical(4, 1, 4, false);
|
|
49474
49495
|
}
|
|
49475
49496
|
return this.closed_curve_;
|
|
49476
49497
|
}
|
|
49477
49498
|
get self_intersect() {
|
|
49478
49499
|
if (this.self_intersect_ === void 0) {
|
|
49479
|
-
this.self_intersect_ = this.
|
|
49500
|
+
this.self_intersect_ = this.extractLogical(5, 1, 4, false);
|
|
49480
49501
|
}
|
|
49481
49502
|
return this.self_intersect_;
|
|
49482
49503
|
}
|
|
@@ -49560,19 +49581,19 @@ var b_spline_surface = class _b_spline_surface extends bounded_surface {
|
|
|
49560
49581
|
}
|
|
49561
49582
|
get u_closed() {
|
|
49562
49583
|
if (this.u_closed_ === void 0) {
|
|
49563
|
-
this.u_closed_ = this.
|
|
49584
|
+
this.u_closed_ = this.extractLogical(5, 1, 4, false);
|
|
49564
49585
|
}
|
|
49565
49586
|
return this.u_closed_;
|
|
49566
49587
|
}
|
|
49567
49588
|
get v_closed() {
|
|
49568
49589
|
if (this.v_closed_ === void 0) {
|
|
49569
|
-
this.v_closed_ = this.
|
|
49590
|
+
this.v_closed_ = this.extractLogical(6, 1, 4, false);
|
|
49570
49591
|
}
|
|
49571
49592
|
return this.v_closed_;
|
|
49572
49593
|
}
|
|
49573
49594
|
get self_intersect() {
|
|
49574
49595
|
if (this.self_intersect_ === void 0) {
|
|
49575
|
-
this.self_intersect_ = this.
|
|
49596
|
+
this.self_intersect_ = this.extractLogical(7, 1, 4, false);
|
|
49576
49597
|
}
|
|
49577
49598
|
return this.self_intersect_;
|
|
49578
49599
|
}
|
|
@@ -49797,7 +49818,7 @@ var composite_curve = class _composite_curve extends bounded_curve {
|
|
|
49797
49818
|
}
|
|
49798
49819
|
get self_intersect() {
|
|
49799
49820
|
if (this.self_intersect_ === void 0) {
|
|
49800
|
-
this.self_intersect_ = this.
|
|
49821
|
+
this.self_intersect_ = this.extractLogical(2, 1, 4, false);
|
|
49801
49822
|
}
|
|
49802
49823
|
return this.self_intersect_;
|
|
49803
49824
|
}
|
|
@@ -58366,7 +58387,7 @@ var descriptions = [
|
|
|
58366
58387
|
},
|
|
58367
58388
|
product_definitional: {
|
|
58368
58389
|
kind: f.BOOLEAN,
|
|
58369
|
-
optional:
|
|
58390
|
+
optional: true,
|
|
58370
58391
|
derived: false,
|
|
58371
58392
|
offset: 3
|
|
58372
58393
|
},
|
|
@@ -63775,13 +63796,13 @@ var descriptions = [
|
|
|
63775
63796
|
},
|
|
63776
63797
|
closed_curve: {
|
|
63777
63798
|
kind: f.BOOLEAN,
|
|
63778
|
-
optional:
|
|
63799
|
+
optional: true,
|
|
63779
63800
|
derived: false,
|
|
63780
63801
|
offset: 4
|
|
63781
63802
|
},
|
|
63782
63803
|
self_intersect: {
|
|
63783
63804
|
kind: f.BOOLEAN,
|
|
63784
|
-
optional:
|
|
63805
|
+
optional: true,
|
|
63785
63806
|
derived: false,
|
|
63786
63807
|
offset: 5
|
|
63787
63808
|
},
|
|
@@ -63910,19 +63931,19 @@ var descriptions = [
|
|
|
63910
63931
|
},
|
|
63911
63932
|
u_closed: {
|
|
63912
63933
|
kind: f.BOOLEAN,
|
|
63913
|
-
optional:
|
|
63934
|
+
optional: true,
|
|
63914
63935
|
derived: false,
|
|
63915
63936
|
offset: 5
|
|
63916
63937
|
},
|
|
63917
63938
|
v_closed: {
|
|
63918
63939
|
kind: f.BOOLEAN,
|
|
63919
|
-
optional:
|
|
63940
|
+
optional: true,
|
|
63920
63941
|
derived: false,
|
|
63921
63942
|
offset: 6
|
|
63922
63943
|
},
|
|
63923
63944
|
self_intersect: {
|
|
63924
63945
|
kind: f.BOOLEAN,
|
|
63925
|
-
optional:
|
|
63946
|
+
optional: true,
|
|
63926
63947
|
derived: false,
|
|
63927
63948
|
offset: 7
|
|
63928
63949
|
},
|
|
@@ -64731,7 +64752,7 @@ var descriptions = [
|
|
|
64731
64752
|
},
|
|
64732
64753
|
self_intersect: {
|
|
64733
64754
|
kind: f.BOOLEAN,
|
|
64734
|
-
optional:
|
|
64755
|
+
optional: true,
|
|
64735
64756
|
derived: false,
|
|
64736
64757
|
offset: 2
|
|
64737
64758
|
},
|
|
@@ -64742,7 +64763,7 @@ var descriptions = [
|
|
|
64742
64763
|
},
|
|
64743
64764
|
closed_curve: {
|
|
64744
64765
|
kind: f.BOOLEAN,
|
|
64745
|
-
optional:
|
|
64766
|
+
optional: true,
|
|
64746
64767
|
derived: true
|
|
64747
64768
|
}
|
|
64748
64769
|
},
|
|
@@ -67128,7 +67149,7 @@ var descriptions = [
|
|
|
67128
67149
|
},
|
|
67129
67150
|
self_intersect: {
|
|
67130
67151
|
kind: f.BOOLEAN,
|
|
67131
|
-
optional:
|
|
67152
|
+
optional: true,
|
|
67132
67153
|
derived: false,
|
|
67133
67154
|
offset: 3
|
|
67134
67155
|
}
|
|
@@ -67155,7 +67176,7 @@ var descriptions = [
|
|
|
67155
67176
|
},
|
|
67156
67177
|
self_intersect: {
|
|
67157
67178
|
kind: f.BOOLEAN,
|
|
67158
|
-
optional:
|
|
67179
|
+
optional: true,
|
|
67159
67180
|
derived: false,
|
|
67160
67181
|
offset: 3
|
|
67161
67182
|
},
|
|
@@ -73653,7 +73674,7 @@ var descriptions = [
|
|
|
73653
73674
|
},
|
|
73654
73675
|
self_intersect: {
|
|
73655
73676
|
kind: f.BOOLEAN,
|
|
73656
|
-
optional:
|
|
73677
|
+
optional: true,
|
|
73657
73678
|
derived: false,
|
|
73658
73679
|
offset: 3
|
|
73659
73680
|
}
|
|
@@ -944,7 +944,7 @@ var EntityTypesIfcCount = 909;
|
|
|
944
944
|
var entity_types_ifc_gen_default = EntityTypesIfc;
|
|
945
945
|
|
|
946
946
|
// compiled/src/version/version.js
|
|
947
|
-
var versionString = "Conway v1.
|
|
947
|
+
var versionString = "Conway v1.528.1490";
|
|
948
948
|
|
|
949
949
|
// compiled/dependencies/conway-geom/interface/conway_geometry.js
|
|
950
950
|
var wasmType = "";
|
|
@@ -11280,6 +11280,27 @@ var StepEntityBase = class {
|
|
|
11280
11280
|
}
|
|
11281
11281
|
return value;
|
|
11282
11282
|
}
|
|
11283
|
+
/**
|
|
11284
|
+
* Extract a number at the particular vtable offset (i.e. the position
|
|
11285
|
+
* in the matching step object).
|
|
11286
|
+
*
|
|
11287
|
+
* Used by other extraction methods with wrappers to perform
|
|
11288
|
+
* semantically correct extraction.
|
|
11289
|
+
*
|
|
11290
|
+
* Unlike the other extractors this has a single signature rather than an
|
|
11291
|
+
* optional/non-optional overload pair, because LOGICAL is three-valued:
|
|
11292
|
+
* `.U.` is a legitimate value that reads as null, so a non-optional LOGICAL
|
|
11293
|
+
* is null-valued too and `optional` only decides whether a *missing* value
|
|
11294
|
+
* throws. The old `optional: false` overload promised a bare `boolean` and
|
|
11295
|
+
* was a lie for exactly the `.U.` case this extractor exists to handle.
|
|
11296
|
+
*
|
|
11297
|
+
* @param offset The offset in the vtable to extract from
|
|
11298
|
+
* @param baseOffset The base offset in the vtable to extract from
|
|
11299
|
+
* @param depth The depth of the vtable to extract from
|
|
11300
|
+
* @param optional Is this an optional field?
|
|
11301
|
+
* @return {boolean | null} The extracted logical, or null for `.U.` and for
|
|
11302
|
+
* an absent optional.
|
|
11303
|
+
*/
|
|
11283
11304
|
extractLogical(offset, baseOffset, depth, optional) {
|
|
11284
11305
|
const [cursor, endCursor, buffer] = this.getOffsetAndEndCursor(offset, baseOffset, depth);
|
|
11285
11306
|
const value = stepExtractLogical(buffer, cursor, endCursor);
|
|
@@ -15421,7 +15442,7 @@ var IfcLogical = class extends StepEntityBase {
|
|
|
15421
15442
|
}
|
|
15422
15443
|
get Value() {
|
|
15423
15444
|
if (this.Value_ === void 0) {
|
|
15424
|
-
this.Value_ = this.
|
|
15445
|
+
this.Value_ = this.extractLogical(0, 0, 0, false);
|
|
15425
15446
|
}
|
|
15426
15447
|
return this.Value_;
|
|
15427
15448
|
}
|
|
@@ -26543,7 +26564,7 @@ var IfcRelInterferesElements = class extends IfcRelConnects {
|
|
|
26543
26564
|
}
|
|
26544
26565
|
get ImpliedOrder() {
|
|
26545
26566
|
if (this.ImpliedOrder_ === void 0) {
|
|
26546
|
-
this.ImpliedOrder_ = this.
|
|
26567
|
+
this.ImpliedOrder_ = this.extractLogical(8, 4, 3, false);
|
|
26547
26568
|
}
|
|
26548
26569
|
return this.ImpliedOrder_;
|
|
26549
26570
|
}
|
|
@@ -64811,7 +64832,7 @@ var descriptions = [
|
|
|
64811
64832
|
},
|
|
64812
64833
|
ImpliedOrder: {
|
|
64813
64834
|
kind: f.BOOLEAN,
|
|
64814
|
-
optional:
|
|
64835
|
+
optional: true,
|
|
64815
64836
|
derived: false,
|
|
64816
64837
|
offset: 8
|
|
64817
64838
|
}
|
|
@@ -69783,7 +69804,7 @@ var descriptions = [
|
|
|
69783
69804
|
fields: {
|
|
69784
69805
|
Value: {
|
|
69785
69806
|
kind: f.BOOLEAN,
|
|
69786
|
-
optional:
|
|
69807
|
+
optional: true,
|
|
69787
69808
|
derived: false,
|
|
69788
69809
|
offset: 0
|
|
69789
69810
|
}
|
|
@@ -15,8 +15,8 @@ export declare class b_spline_curve extends bounded_curve {
|
|
|
15
15
|
get degree(): number;
|
|
16
16
|
get control_points_list(): Array<cartesian_point>;
|
|
17
17
|
get curve_form(): b_spline_curve_form;
|
|
18
|
-
get closed_curve(): boolean;
|
|
19
|
-
get self_intersect(): boolean;
|
|
18
|
+
get closed_curve(): boolean | null;
|
|
19
|
+
get self_intersect(): boolean | null;
|
|
20
20
|
get upper_index_on_control_points(): number;
|
|
21
21
|
get control_points(): Array<cartesian_point>;
|
|
22
22
|
constructor(localID: number, internalReference: StepEntityInternalReference<EntityTypesAP214>, model: StepModelBase<EntityTypesAP214, StepEntityBase<EntityTypesAP214>>, multiReference?: StepEntityInternalReference<EntityTypesAP214>[]);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"b_spline_curve.gen.d.ts","sourceRoot":"","sources":["../../../../src/AP214E3_2010/AP214E3_2010_gen/b_spline_curve.gen.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AACvC,OAAO,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AACzC,OAAO,EAAE,mBAAmB,EAAsC,MAAM,SAAS,CAAA;AAajF,OAAO,gBAAgB,MAAM,0BAA0B,CAAA;AACvD,OAAO,2BAA2B,MAAM,2CAA2C,CAAA;AACnF,OAAO,cAAc,MAAM,6BAA6B,CAAA;AACxD,OAAO,aAAa,MAAM,4BAA4B,CAAA;AAItD,qBAAc,cAAe,SAAQ,aAAa;IAChD,IAAW,IAAI,IAAI,gBAAgB,CAElC;IACD,OAAO,CAAC,OAAO,CAAC,CAAS;IACzB,OAAO,CAAC,oBAAoB,CAAC,CAAyB;IACtD,OAAO,CAAC,WAAW,CAAC,CAAsB;IAC1C,OAAO,CAAC,aAAa,CAAC,
|
|
1
|
+
{"version":3,"file":"b_spline_curve.gen.d.ts","sourceRoot":"","sources":["../../../../src/AP214E3_2010/AP214E3_2010_gen/b_spline_curve.gen.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AACvC,OAAO,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AACzC,OAAO,EAAE,mBAAmB,EAAsC,MAAM,SAAS,CAAA;AAajF,OAAO,gBAAgB,MAAM,0BAA0B,CAAA;AACvD,OAAO,2BAA2B,MAAM,2CAA2C,CAAA;AACnF,OAAO,cAAc,MAAM,6BAA6B,CAAA;AACxD,OAAO,aAAa,MAAM,4BAA4B,CAAA;AAItD,qBAAc,cAAe,SAAQ,aAAa;IAChD,IAAW,IAAI,IAAI,gBAAgB,CAElC;IACD,OAAO,CAAC,OAAO,CAAC,CAAS;IACzB,OAAO,CAAC,oBAAoB,CAAC,CAAyB;IACtD,OAAO,CAAC,WAAW,CAAC,CAAsB;IAC1C,OAAO,CAAC,aAAa,CAAC,CAAiB;IACvC,OAAO,CAAC,eAAe,CAAC,CAAiB;IAEzC,IAAW,MAAM,IAAK,MAAM,CAM3B;IAED,IAAW,mBAAmB,IAAK,KAAK,CAAC,eAAe,CAAC,CA+BxD;IAED,IAAW,UAAU,IAAK,mBAAmB,CAM5C;IAED,IAAW,YAAY,IAAK,OAAO,GAAG,IAAI,CAMzC;IAED,IAAW,cAAc,IAAK,OAAO,GAAG,IAAI,CAM3C;IAED,IAAW,6BAA6B,IAAK,MAAM,CAElD;IAED,IAAW,cAAc,IAAK,KAAK,CAAC,eAAe,CAAC,CAEnD;gBAEC,OAAO,EAAE,MAAM,EACf,iBAAiB,EAAE,2BAA2B,CAAE,gBAAgB,CAAE,EAClE,KAAK,EAAE,aAAa,CAAE,gBAAgB,EAAE,cAAc,CAAE,gBAAgB,CAAE,CAAE,EAC5E,cAAc,CAAC,EAAE,2BAA2B,CAAE,gBAAgB,CAAE,EAAE;IAqBpE,gBAAuB,KAAK,qBAC0J;IAEtL,gBAAuB,YAAY,EAAE,gBAAgB,CACpB;CAClC"}
|
|
@@ -50,13 +50,13 @@ export class b_spline_curve extends bounded_curve {
|
|
|
50
50
|
}
|
|
51
51
|
get closed_curve() {
|
|
52
52
|
if (this.closed_curve_ === void 0) {
|
|
53
|
-
this.closed_curve_ = this.
|
|
53
|
+
this.closed_curve_ = this.extractLogical(4, 1, 4, false);
|
|
54
54
|
}
|
|
55
55
|
return this.closed_curve_;
|
|
56
56
|
}
|
|
57
57
|
get self_intersect() {
|
|
58
58
|
if (this.self_intersect_ === void 0) {
|
|
59
|
-
this.self_intersect_ = this.
|
|
59
|
+
this.self_intersect_ = this.extractLogical(5, 1, 4, false);
|
|
60
60
|
}
|
|
61
61
|
return this.self_intersect_;
|
|
62
62
|
}
|
|
@@ -18,9 +18,9 @@ export declare class b_spline_surface extends bounded_surface {
|
|
|
18
18
|
get v_degree(): number;
|
|
19
19
|
get control_points_list(): Array<Array<cartesian_point>>;
|
|
20
20
|
get surface_form(): b_spline_surface_form;
|
|
21
|
-
get u_closed(): boolean;
|
|
22
|
-
get v_closed(): boolean;
|
|
23
|
-
get self_intersect(): boolean;
|
|
21
|
+
get u_closed(): boolean | null;
|
|
22
|
+
get v_closed(): boolean | null;
|
|
23
|
+
get self_intersect(): boolean | null;
|
|
24
24
|
get u_upper(): number;
|
|
25
25
|
get v_upper(): number;
|
|
26
26
|
get control_points(): Array<Array<cartesian_point>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"b_spline_surface.gen.d.ts","sourceRoot":"","sources":["../../../../src/AP214E3_2010/AP214E3_2010_gen/b_spline_surface.gen.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AACzC,OAAO,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AACzC,OAAO,EAAE,qBAAqB,EAAwC,MAAM,SAAS,CAAA;AAarF,OAAO,gBAAgB,MAAM,0BAA0B,CAAA;AACvD,OAAO,2BAA2B,MAAM,2CAA2C,CAAA;AACnF,OAAO,cAAc,MAAM,6BAA6B,CAAA;AACxD,OAAO,aAAa,MAAM,4BAA4B,CAAA;AAItD,qBAAc,gBAAiB,SAAQ,eAAe;IACpD,IAAW,IAAI,IAAI,gBAAgB,CAElC;IACD,OAAO,CAAC,SAAS,CAAC,CAAS;IAC3B,OAAO,CAAC,SAAS,CAAC,CAAS;IAC3B,OAAO,CAAC,oBAAoB,CAAC,CAAgC;IAC7D,OAAO,CAAC,aAAa,CAAC,CAAwB;IAC9C,OAAO,CAAC,SAAS,CAAC,
|
|
1
|
+
{"version":3,"file":"b_spline_surface.gen.d.ts","sourceRoot":"","sources":["../../../../src/AP214E3_2010/AP214E3_2010_gen/b_spline_surface.gen.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AACzC,OAAO,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AACzC,OAAO,EAAE,qBAAqB,EAAwC,MAAM,SAAS,CAAA;AAarF,OAAO,gBAAgB,MAAM,0BAA0B,CAAA;AACvD,OAAO,2BAA2B,MAAM,2CAA2C,CAAA;AACnF,OAAO,cAAc,MAAM,6BAA6B,CAAA;AACxD,OAAO,aAAa,MAAM,4BAA4B,CAAA;AAItD,qBAAc,gBAAiB,SAAQ,eAAe;IACpD,IAAW,IAAI,IAAI,gBAAgB,CAElC;IACD,OAAO,CAAC,SAAS,CAAC,CAAS;IAC3B,OAAO,CAAC,SAAS,CAAC,CAAS;IAC3B,OAAO,CAAC,oBAAoB,CAAC,CAAgC;IAC7D,OAAO,CAAC,aAAa,CAAC,CAAwB;IAC9C,OAAO,CAAC,SAAS,CAAC,CAAiB;IACnC,OAAO,CAAC,SAAS,CAAC,CAAiB;IACnC,OAAO,CAAC,eAAe,CAAC,CAAiB;IAEzC,IAAW,QAAQ,IAAK,MAAM,CAM7B;IAED,IAAW,QAAQ,IAAK,MAAM,CAM7B;IAED,IAAW,mBAAmB,IAAK,KAAK,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAyC/D;IAED,IAAW,YAAY,IAAK,qBAAqB,CAMhD;IAED,IAAW,QAAQ,IAAK,OAAO,GAAG,IAAI,CAMrC;IAED,IAAW,QAAQ,IAAK,OAAO,GAAG,IAAI,CAMrC;IAED,IAAW,cAAc,IAAK,OAAO,GAAG,IAAI,CAM3C;IAED,IAAW,OAAO,IAAK,MAAM,CAE5B;IAED,IAAW,OAAO,IAAK,MAAM,CAE5B;IAED,IAAW,cAAc,IAAK,KAAK,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAE1D;gBAEC,OAAO,EAAE,MAAM,EACf,iBAAiB,EAAE,2BAA2B,CAAE,gBAAgB,CAAE,EAClE,KAAK,EAAE,aAAa,CAAE,gBAAgB,EAAE,cAAc,CAAE,gBAAgB,CAAE,CAAE,EAC5E,cAAc,CAAC,EAAE,2BAA2B,CAAE,gBAAgB,CAAE,EAAE;IAqBpE,gBAAuB,KAAK,qBACoK;IAEhM,gBAAuB,YAAY,EAAE,gBAAgB,CAClB;CACpC"}
|
|
@@ -64,19 +64,19 @@ export class b_spline_surface extends bounded_surface {
|
|
|
64
64
|
}
|
|
65
65
|
get u_closed() {
|
|
66
66
|
if (this.u_closed_ === void 0) {
|
|
67
|
-
this.u_closed_ = this.
|
|
67
|
+
this.u_closed_ = this.extractLogical(5, 1, 4, false);
|
|
68
68
|
}
|
|
69
69
|
return this.u_closed_;
|
|
70
70
|
}
|
|
71
71
|
get v_closed() {
|
|
72
72
|
if (this.v_closed_ === void 0) {
|
|
73
|
-
this.v_closed_ = this.
|
|
73
|
+
this.v_closed_ = this.extractLogical(6, 1, 4, false);
|
|
74
74
|
}
|
|
75
75
|
return this.v_closed_;
|
|
76
76
|
}
|
|
77
77
|
get self_intersect() {
|
|
78
78
|
if (this.self_intersect_ === void 0) {
|
|
79
|
-
this.self_intersect_ = this.
|
|
79
|
+
this.self_intersect_ = this.extractLogical(7, 1, 4, false);
|
|
80
80
|
}
|
|
81
81
|
return this.self_intersect_;
|
|
82
82
|
}
|
|
@@ -9,7 +9,7 @@ export declare class composite_curve extends bounded_curve {
|
|
|
9
9
|
private segments_?;
|
|
10
10
|
private self_intersect_?;
|
|
11
11
|
get segments(): Array<composite_curve_segment>;
|
|
12
|
-
get self_intersect(): boolean;
|
|
12
|
+
get self_intersect(): boolean | null;
|
|
13
13
|
get n_segments(): number;
|
|
14
14
|
constructor(localID: number, internalReference: StepEntityInternalReference<EntityTypesAP214>, model: StepModelBase<EntityTypesAP214, StepEntityBase<EntityTypesAP214>>, multiReference?: StepEntityInternalReference<EntityTypesAP214>[]);
|
|
15
15
|
static readonly query: EntityTypesAP214[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"composite_curve.gen.d.ts","sourceRoot":"","sources":["../../../../src/AP214E3_2010/AP214E3_2010_gen/composite_curve.gen.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AACvC,OAAO,EAAE,uBAAuB,EAAE,MAAM,SAAS,CAAA;AAUjD,OAAO,gBAAgB,MAAM,0BAA0B,CAAA;AACvD,OAAO,2BAA2B,MAAM,2CAA2C,CAAA;AACnF,OAAO,cAAc,MAAM,6BAA6B,CAAA;AACxD,OAAO,aAAa,MAAM,4BAA4B,CAAA;AAItD,qBAAc,eAAgB,SAAQ,aAAa;IACjD,IAAW,IAAI,IAAI,gBAAgB,CAElC;IACD,OAAO,CAAC,SAAS,CAAC,CAAiC;IACnD,OAAO,CAAC,eAAe,CAAC,
|
|
1
|
+
{"version":3,"file":"composite_curve.gen.d.ts","sourceRoot":"","sources":["../../../../src/AP214E3_2010/AP214E3_2010_gen/composite_curve.gen.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AACvC,OAAO,EAAE,uBAAuB,EAAE,MAAM,SAAS,CAAA;AAUjD,OAAO,gBAAgB,MAAM,0BAA0B,CAAA;AACvD,OAAO,2BAA2B,MAAM,2CAA2C,CAAA;AACnF,OAAO,cAAc,MAAM,6BAA6B,CAAA;AACxD,OAAO,aAAa,MAAM,4BAA4B,CAAA;AAItD,qBAAc,eAAgB,SAAQ,aAAa;IACjD,IAAW,IAAI,IAAI,gBAAgB,CAElC;IACD,OAAO,CAAC,SAAS,CAAC,CAAiC;IACnD,OAAO,CAAC,eAAe,CAAC,CAAiB;IAEzC,IAAW,QAAQ,IAAK,KAAK,CAAC,uBAAuB,CAAC,CA+BrD;IAED,IAAW,cAAc,IAAK,OAAO,GAAG,IAAI,CAM3C;IAED,IAAW,UAAU,IAAK,MAAM,CAE/B;gBAGC,OAAO,EAAE,MAAM,EACf,iBAAiB,EAAE,2BAA2B,CAAE,gBAAgB,CAAE,EAClE,KAAK,EAAE,aAAa,CAAE,gBAAgB,EAAE,cAAc,CAAE,gBAAgB,CAAE,CAAE,EAC5E,cAAc,CAAC,EAAE,2BAA2B,CAAE,gBAAgB,CAAE,EAAE;IAqBpE,gBAAuB,KAAK,qBACU;IAEtC,gBAAuB,YAAY,EAAE,gBAAgB,CACnB;CACnC"}
|
|
@@ -36,7 +36,7 @@ export class composite_curve extends bounded_curve {
|
|
|
36
36
|
}
|
|
37
37
|
get self_intersect() {
|
|
38
38
|
if (this.self_intersect_ === void 0) {
|
|
39
|
-
this.self_intersect_ = this.
|
|
39
|
+
this.self_intersect_ = this.extractLogical(2, 1, 4, false);
|
|
40
40
|
}
|
|
41
41
|
return this.self_intersect_;
|
|
42
42
|
}
|
|
@@ -10,7 +10,7 @@ export declare class offset_curve_2d extends curve {
|
|
|
10
10
|
private self_intersect_?;
|
|
11
11
|
get basis_curve(): curve;
|
|
12
12
|
get distance(): number;
|
|
13
|
-
get self_intersect(): boolean;
|
|
13
|
+
get self_intersect(): boolean | null;
|
|
14
14
|
constructor(localID: number, internalReference: StepEntityInternalReference<EntityTypesAP214>, model: StepModelBase<EntityTypesAP214, StepEntityBase<EntityTypesAP214>>, multiReference?: StepEntityInternalReference<EntityTypesAP214>[]);
|
|
15
15
|
static readonly query: EntityTypesAP214[];
|
|
16
16
|
static readonly expectedType: EntityTypesAP214;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"offset_curve_2d.gen.d.ts","sourceRoot":"","sources":["../../../../src/AP214E3_2010/AP214E3_2010_gen/offset_curve_2d.gen.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAI/B,OAAO,gBAAgB,MAAM,0BAA0B,CAAA;AACvD,OAAO,2BAA2B,MAAM,2CAA2C,CAAA;AACnF,OAAO,cAAc,MAAM,6BAA6B,CAAA;AACxD,OAAO,aAAa,MAAM,4BAA4B,CAAA;AAItD,qBAAc,eAAgB,SAAQ,KAAK;IACzC,IAAW,IAAI,IAAI,gBAAgB,CAElC;IACD,OAAO,CAAC,YAAY,CAAC,CAAQ;IAC7B,OAAO,CAAC,SAAS,CAAC,CAAS;IAC3B,OAAO,CAAC,eAAe,CAAC,
|
|
1
|
+
{"version":3,"file":"offset_curve_2d.gen.d.ts","sourceRoot":"","sources":["../../../../src/AP214E3_2010/AP214E3_2010_gen/offset_curve_2d.gen.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAI/B,OAAO,gBAAgB,MAAM,0BAA0B,CAAA;AACvD,OAAO,2BAA2B,MAAM,2CAA2C,CAAA;AACnF,OAAO,cAAc,MAAM,6BAA6B,CAAA;AACxD,OAAO,aAAa,MAAM,4BAA4B,CAAA;AAItD,qBAAc,eAAgB,SAAQ,KAAK;IACzC,IAAW,IAAI,IAAI,gBAAgB,CAElC;IACD,OAAO,CAAC,YAAY,CAAC,CAAQ;IAC7B,OAAO,CAAC,SAAS,CAAC,CAAS;IAC3B,OAAO,CAAC,eAAe,CAAC,CAAiB;IAEzC,IAAW,WAAW,IAAK,KAAK,CAM/B;IAED,IAAW,QAAQ,IAAK,MAAM,CAM7B;IAED,IAAW,cAAc,IAAK,OAAO,GAAG,IAAI,CAM3C;gBAEC,OAAO,EAAE,MAAM,EACf,iBAAiB,EAAE,2BAA2B,CAAE,gBAAgB,CAAE,EAClE,KAAK,EAAE,aAAa,CAAE,gBAAgB,EAAE,cAAc,CAAE,gBAAgB,CAAE,CAAE,EAC5E,cAAc,CAAC,EAAE,2BAA2B,CAAE,gBAAgB,CAAE,EAAE;IAqBpE,gBAAuB,KAAK,qBACU;IAEtC,gBAAuB,YAAY,EAAE,gBAAgB,CACnB;CACnC"}
|
|
@@ -21,7 +21,7 @@ export class offset_curve_2d extends curve {
|
|
|
21
21
|
}
|
|
22
22
|
get self_intersect() {
|
|
23
23
|
if (this.self_intersect_ === void 0) {
|
|
24
|
-
this.self_intersect_ = this.
|
|
24
|
+
this.self_intersect_ = this.extractLogical(3, 1, 3, false);
|
|
25
25
|
}
|
|
26
26
|
return this.self_intersect_;
|
|
27
27
|
}
|
|
@@ -12,7 +12,7 @@ export declare class offset_curve_3d extends curve {
|
|
|
12
12
|
private ref_direction_?;
|
|
13
13
|
get basis_curve(): curve;
|
|
14
14
|
get distance(): number;
|
|
15
|
-
get self_intersect(): boolean;
|
|
15
|
+
get self_intersect(): boolean | null;
|
|
16
16
|
get ref_direction(): direction;
|
|
17
17
|
constructor(localID: number, internalReference: StepEntityInternalReference<EntityTypesAP214>, model: StepModelBase<EntityTypesAP214, StepEntityBase<EntityTypesAP214>>, multiReference?: StepEntityInternalReference<EntityTypesAP214>[]);
|
|
18
18
|
static readonly query: EntityTypesAP214[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"offset_curve_3d.gen.d.ts","sourceRoot":"","sources":["../../../../src/AP214E3_2010/AP214E3_2010_gen/offset_curve_3d.gen.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAE/B,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAGnC,OAAO,gBAAgB,MAAM,0BAA0B,CAAA;AACvD,OAAO,2BAA2B,MAAM,2CAA2C,CAAA;AACnF,OAAO,cAAc,MAAM,6BAA6B,CAAA;AACxD,OAAO,aAAa,MAAM,4BAA4B,CAAA;AAItD,qBAAc,eAAgB,SAAQ,KAAK;IACzC,IAAW,IAAI,IAAI,gBAAgB,CAElC;IACD,OAAO,CAAC,YAAY,CAAC,CAAQ;IAC7B,OAAO,CAAC,SAAS,CAAC,CAAS;IAC3B,OAAO,CAAC,eAAe,CAAC,
|
|
1
|
+
{"version":3,"file":"offset_curve_3d.gen.d.ts","sourceRoot":"","sources":["../../../../src/AP214E3_2010/AP214E3_2010_gen/offset_curve_3d.gen.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAE/B,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAGnC,OAAO,gBAAgB,MAAM,0BAA0B,CAAA;AACvD,OAAO,2BAA2B,MAAM,2CAA2C,CAAA;AACnF,OAAO,cAAc,MAAM,6BAA6B,CAAA;AACxD,OAAO,aAAa,MAAM,4BAA4B,CAAA;AAItD,qBAAc,eAAgB,SAAQ,KAAK;IACzC,IAAW,IAAI,IAAI,gBAAgB,CAElC;IACD,OAAO,CAAC,YAAY,CAAC,CAAQ;IAC7B,OAAO,CAAC,SAAS,CAAC,CAAS;IAC3B,OAAO,CAAC,eAAe,CAAC,CAAiB;IACzC,OAAO,CAAC,cAAc,CAAC,CAAY;IAEnC,IAAW,WAAW,IAAK,KAAK,CAM/B;IAED,IAAW,QAAQ,IAAK,MAAM,CAM7B;IAED,IAAW,cAAc,IAAK,OAAO,GAAG,IAAI,CAM3C;IAED,IAAW,aAAa,IAAK,SAAS,CAMrC;gBAEC,OAAO,EAAE,MAAM,EACf,iBAAiB,EAAE,2BAA2B,CAAE,gBAAgB,CAAE,EAClE,KAAK,EAAE,aAAa,CAAE,gBAAgB,EAAE,cAAc,CAAE,gBAAgB,CAAE,CAAE,EAC5E,cAAc,CAAC,EAAE,2BAA2B,CAAE,gBAAgB,CAAE,EAAE;IAqBpE,gBAAuB,KAAK,qBACU;IAEtC,gBAAuB,YAAY,EAAE,gBAAgB,CACnB;CACnC"}
|
|
@@ -22,7 +22,7 @@ export class offset_curve_3d extends curve {
|
|
|
22
22
|
}
|
|
23
23
|
get self_intersect() {
|
|
24
24
|
if (this.self_intersect_ === void 0) {
|
|
25
|
-
this.self_intersect_ = this.
|
|
25
|
+
this.self_intersect_ = this.extractLogical(3, 1, 3, false);
|
|
26
26
|
}
|
|
27
27
|
return this.self_intersect_;
|
|
28
28
|
}
|
|
@@ -10,7 +10,7 @@ export declare class offset_surface extends surface {
|
|
|
10
10
|
private self_intersect_?;
|
|
11
11
|
get basis_surface(): surface;
|
|
12
12
|
get distance(): number;
|
|
13
|
-
get self_intersect(): boolean;
|
|
13
|
+
get self_intersect(): boolean | null;
|
|
14
14
|
constructor(localID: number, internalReference: StepEntityInternalReference<EntityTypesAP214>, model: StepModelBase<EntityTypesAP214, StepEntityBase<EntityTypesAP214>>, multiReference?: StepEntityInternalReference<EntityTypesAP214>[]);
|
|
15
15
|
static readonly query: EntityTypesAP214[];
|
|
16
16
|
static readonly expectedType: EntityTypesAP214;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"offset_surface.gen.d.ts","sourceRoot":"","sources":["../../../../src/AP214E3_2010/AP214E3_2010_gen/offset_surface.gen.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AAIjC,OAAO,gBAAgB,MAAM,0BAA0B,CAAA;AACvD,OAAO,2BAA2B,MAAM,2CAA2C,CAAA;AACnF,OAAO,cAAc,MAAM,6BAA6B,CAAA;AACxD,OAAO,aAAa,MAAM,4BAA4B,CAAA;AAItD,qBAAc,cAAe,SAAQ,OAAO;IAC1C,IAAW,IAAI,IAAI,gBAAgB,CAElC;IACD,OAAO,CAAC,cAAc,CAAC,CAAU;IACjC,OAAO,CAAC,SAAS,CAAC,CAAS;IAC3B,OAAO,CAAC,eAAe,CAAC,
|
|
1
|
+
{"version":3,"file":"offset_surface.gen.d.ts","sourceRoot":"","sources":["../../../../src/AP214E3_2010/AP214E3_2010_gen/offset_surface.gen.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AAIjC,OAAO,gBAAgB,MAAM,0BAA0B,CAAA;AACvD,OAAO,2BAA2B,MAAM,2CAA2C,CAAA;AACnF,OAAO,cAAc,MAAM,6BAA6B,CAAA;AACxD,OAAO,aAAa,MAAM,4BAA4B,CAAA;AAItD,qBAAc,cAAe,SAAQ,OAAO;IAC1C,IAAW,IAAI,IAAI,gBAAgB,CAElC;IACD,OAAO,CAAC,cAAc,CAAC,CAAU;IACjC,OAAO,CAAC,SAAS,CAAC,CAAS;IAC3B,OAAO,CAAC,eAAe,CAAC,CAAiB;IAEzC,IAAW,aAAa,IAAK,OAAO,CAMnC;IAED,IAAW,QAAQ,IAAK,MAAM,CAM7B;IAED,IAAW,cAAc,IAAK,OAAO,GAAG,IAAI,CAM3C;gBAEC,OAAO,EAAE,MAAM,EACf,iBAAiB,EAAE,2BAA2B,CAAE,gBAAgB,CAAE,EAClE,KAAK,EAAE,aAAa,CAAE,gBAAgB,EAAE,cAAc,CAAE,gBAAgB,CAAE,CAAE,EAC5E,cAAc,CAAC,EAAE,2BAA2B,CAAE,gBAAgB,CAAE,EAAE;IAqBpE,gBAAuB,KAAK,qBACS;IAErC,gBAAuB,YAAY,EAAE,gBAAgB,CACpB;CAClC"}
|
|
@@ -21,7 +21,7 @@ export class offset_surface extends surface {
|
|
|
21
21
|
}
|
|
22
22
|
get self_intersect() {
|
|
23
23
|
if (this.self_intersect_ === void 0) {
|
|
24
|
-
this.self_intersect_ = this.
|
|
24
|
+
this.self_intersect_ = this.extractLogical(3, 1, 3, false);
|
|
25
25
|
}
|
|
26
26
|
return this.self_intersect_;
|
|
27
27
|
}
|