@itwin/editor-backend 3.4.0-dev.9 → 3.5.0-dev.4
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/CHANGELOG.md +21 -1
- package/lib/cjs/EditBuiltInCommand.d.ts +78 -76
- package/lib/cjs/EditBuiltInCommand.d.ts.map +1 -1
- package/lib/cjs/EditBuiltInCommand.js +638 -636
- package/lib/cjs/EditBuiltInCommand.js.map +1 -1
- package/lib/cjs/EditCommand.d.ts +57 -57
- package/lib/cjs/EditCommand.js +108 -108
- package/lib/cjs/EditCommand.js.map +1 -1
- package/lib/cjs/editor-backend.d.ts +2 -2
- package/lib/cjs/editor-backend.js +18 -18
- package/lib/cjs/editor-backend.js.map +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
# Change Log - @itwin/editor-backend
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Thu, 01 Sep 2022 14:37:22 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 3.3.2
|
|
6
|
+
Thu, 01 Sep 2022 14:37:22 GMT
|
|
7
|
+
|
|
8
|
+
_Version update only_
|
|
9
|
+
|
|
10
|
+
## 3.3.1
|
|
11
|
+
Fri, 26 Aug 2022 15:40:02 GMT
|
|
12
|
+
|
|
13
|
+
_Version update only_
|
|
14
|
+
|
|
15
|
+
## 3.3.0
|
|
16
|
+
Thu, 18 Aug 2022 19:08:02 GMT
|
|
17
|
+
|
|
18
|
+
_Version update only_
|
|
19
|
+
|
|
20
|
+
## 3.2.9
|
|
21
|
+
Fri, 26 Aug 2022 14:21:40 GMT
|
|
22
|
+
|
|
23
|
+
_Version update only_
|
|
4
24
|
|
|
5
25
|
## 3.2.8
|
|
6
26
|
Tue, 09 Aug 2022 15:52:41 GMT
|
|
@@ -1,77 +1,79 @@
|
|
|
1
|
-
/** @packageDocumentation
|
|
2
|
-
* @module Editing
|
|
3
|
-
*/
|
|
4
|
-
import { CompressedId64Set, Id64String, IModelStatus } from "@itwin/core-bentley";
|
|
5
|
-
import { Matrix3dProps, Range3dProps, TransformProps, XYZProps } from "@itwin/core-geometry";
|
|
6
|
-
import { IModelDb } from "@itwin/core-backend";
|
|
7
|
-
import { EcefLocationProps, ElementGeometryBuilderParams, ElementGeometryBuilderParamsForPart, ElementGeometryInfo, GeometricElementProps, GeometryPartProps } from "@itwin/core-common";
|
|
8
|
-
import { BasicManipulationCommandIpc, BlendEdgesProps, BooleanOperationProps, BRepEntityType, ChamferEdgesProps, ConnectedSubEntityProps, CutProps, DeleteSubEntityProps, EdgeParameterRangeProps, ElementGeometryCacheFilter, ElementGeometryResultOptions, ElementGeometryResultProps, EmbossProps, EvaluatedEdgeProps, EvaluatedFaceProps, EvaluatedVertexProps, FaceParameterRangeProps, FlatBufferGeometryFilter, HollowFacesProps, ImprintProps, LocateSubEntityProps, LoftProps, OffsetEdgesProps, OffsetFacesProps, PointInsideResultProps, SewSheetProps, SolidModelingCommandIpc, SpinFacesProps, SubEntityGeometryProps, SubEntityLocationProps, SubEntityProps, SubEntityType, SweepFacesProps, SweepPathProps, ThickenSheetProps, TransformSubEntityProps } from "@itwin/editor-common";
|
|
9
|
-
import { EditCommand } from "./EditCommand";
|
|
10
|
-
/** @alpha */
|
|
11
|
-
export declare class BasicManipulationCommand extends EditCommand implements BasicManipulationCommandIpc {
|
|
12
|
-
protected _str: string;
|
|
13
|
-
static commandId: string;
|
|
14
|
-
constructor(iModel: IModelDb, _str: string);
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
1
|
+
/** @packageDocumentation
|
|
2
|
+
* @module Editing
|
|
3
|
+
*/
|
|
4
|
+
import { CompressedId64Set, Id64String, IModelStatus } from "@itwin/core-bentley";
|
|
5
|
+
import { Matrix3dProps, Range3dProps, TransformProps, XYZProps } from "@itwin/core-geometry";
|
|
6
|
+
import { IModelDb } from "@itwin/core-backend";
|
|
7
|
+
import { EcefLocationProps, ElementGeometryBuilderParams, ElementGeometryBuilderParamsForPart, ElementGeometryInfo, GeometricElementProps, GeometryPartProps } from "@itwin/core-common";
|
|
8
|
+
import { BasicManipulationCommandIpc, BlendEdgesProps, BooleanOperationProps, BRepEntityType, ChamferEdgesProps, ConnectedSubEntityProps, CutProps, DeleteSubEntityProps, EdgeParameterRangeProps, ElementGeometryCacheFilter, ElementGeometryResultOptions, ElementGeometryResultProps, EmbossProps, EvaluatedEdgeProps, EvaluatedFaceProps, EvaluatedVertexProps, FaceParameterRangeProps, FlatBufferGeometryFilter, HollowFacesProps, ImprintProps, LocateSubEntityProps, LoftProps, OffsetEdgesProps, OffsetFacesProps, PointInsideResultProps, SewSheetProps, SolidModelingCommandIpc, SpinFacesProps, SubEntityGeometryProps, SubEntityLocationProps, SubEntityProps, SubEntityType, SweepFacesProps, SweepPathProps, ThickenSheetProps, TransformSubEntityProps } from "@itwin/editor-common";
|
|
9
|
+
import { EditCommand } from "./EditCommand";
|
|
10
|
+
/** @alpha */
|
|
11
|
+
export declare class BasicManipulationCommand extends EditCommand implements BasicManipulationCommandIpc {
|
|
12
|
+
protected _str: string;
|
|
13
|
+
static commandId: string;
|
|
14
|
+
constructor(iModel: IModelDb, _str: string);
|
|
15
|
+
onStart(): Promise<string>;
|
|
16
|
+
deleteElements(ids: CompressedId64Set): Promise<IModelStatus>;
|
|
17
|
+
transformPlacement(ids: CompressedId64Set, transProps: TransformProps): Promise<IModelStatus>;
|
|
18
|
+
rotatePlacement(ids: CompressedId64Set, matrixProps: Matrix3dProps, aboutCenter: boolean): Promise<IModelStatus>;
|
|
19
|
+
insertGeometricElement(props: GeometricElementProps, data?: ElementGeometryBuilderParams): Promise<Id64String>;
|
|
20
|
+
insertGeometryPart(props: GeometryPartProps, data?: ElementGeometryBuilderParamsForPart): Promise<Id64String>;
|
|
21
|
+
updateGeometricElement(propsOrId: GeometricElementProps | Id64String, data?: ElementGeometryBuilderParams): Promise<void>;
|
|
22
|
+
requestElementGeometry(elementId: Id64String, filter?: FlatBufferGeometryFilter): Promise<ElementGeometryInfo | undefined>;
|
|
23
|
+
updateProjectExtents(extents: Range3dProps): Promise<void>;
|
|
24
|
+
updateEcefLocation(ecefLocation: EcefLocationProps): Promise<void>;
|
|
25
|
+
}
|
|
26
|
+
/** @alpha */
|
|
27
|
+
export declare class SolidModelingCommand extends BasicManipulationCommand implements SolidModelingCommandIpc {
|
|
28
|
+
static commandId: string;
|
|
29
|
+
onStart(): Promise<string>;
|
|
30
|
+
private updateElementGeometryCache;
|
|
31
|
+
createElementGeometryCache(id: Id64String, filter?: ElementGeometryCacheFilter): Promise<boolean>;
|
|
32
|
+
clearElementGeometryCache(): Promise<void>;
|
|
33
|
+
summarizeElementGeometryCache(id: Id64String): Promise<BRepEntityType[] | undefined>;
|
|
34
|
+
private requestSubEntityGeometry;
|
|
35
|
+
getSubEntityGeometry(id: Id64String, subEntity: SubEntityProps, opts: Omit<ElementGeometryResultOptions, "writeChanges" | "insertProps">): Promise<SubEntityGeometryProps | undefined>;
|
|
36
|
+
getSubEntityParameterRange(id: Id64String, subEntity: SubEntityProps): Promise<FaceParameterRangeProps | EdgeParameterRangeProps | undefined>;
|
|
37
|
+
evaluateSubEntity(id: Id64String, subEntity: SubEntityProps, uParam?: number, vParam?: number): Promise<EvaluatedFaceProps | EvaluatedEdgeProps | EvaluatedVertexProps | undefined>;
|
|
38
|
+
private subEntityQuery;
|
|
39
|
+
isPlanarFace(id: Id64String, subEntity: SubEntityProps): Promise<boolean>;
|
|
40
|
+
isSmoothEdge(id: Id64String, subEntity: SubEntityProps): Promise<boolean>;
|
|
41
|
+
isLaminarEdge(id: Id64String, subEntity: SubEntityProps): Promise<boolean>;
|
|
42
|
+
isLinearEdge(id: Id64String, subEntity: SubEntityProps): Promise<boolean>;
|
|
43
|
+
isRedundantEdge(id: Id64String, subEntity: SubEntityProps): Promise<boolean>;
|
|
44
|
+
isSmoothVertex(id: Id64String, subEntity: SubEntityProps): Promise<boolean>;
|
|
45
|
+
private bodyQuery;
|
|
46
|
+
isDisjointBody(id: Id64String, index: number): Promise<boolean>;
|
|
47
|
+
isPlanarBody(id: Id64String, index: number): Promise<boolean>;
|
|
48
|
+
isSingleFacePlanarSheet(id: Id64String, index: number): Promise<boolean>;
|
|
49
|
+
hasOnlyPlanarFaces(id: Id64String, index: number): Promise<boolean>;
|
|
50
|
+
hasCurvedFaceOrEdge(id: Id64String, index: number): Promise<boolean>;
|
|
51
|
+
getBodySubEntities(id: Id64String, type: SubEntityType, firstOnly?: true): Promise<SubEntityProps[] | undefined>;
|
|
52
|
+
getConnectedSubEntities(id: Id64String, subEntity: SubEntityProps, type: SubEntityType, options?: ConnectedSubEntityProps): Promise<SubEntityProps[] | undefined>;
|
|
53
|
+
locateSubEntities(id: Id64String, point: XYZProps, direction: XYZProps, options: LocateSubEntityProps): Promise<SubEntityLocationProps[] | undefined>;
|
|
54
|
+
locateFace(id: Id64String, subEntity: SubEntityProps, point: XYZProps, direction: XYZProps): Promise<SubEntityLocationProps[] | undefined>;
|
|
55
|
+
getClosestSubEntity(id: Id64String, point: XYZProps): Promise<SubEntityLocationProps | undefined>;
|
|
56
|
+
getClosestFace(id: Id64String, point: XYZProps, direction?: XYZProps): Promise<SubEntityLocationProps | undefined>;
|
|
57
|
+
getClosestPoint(id: Id64String, subEntity: SubEntityProps, point: XYZProps): Promise<SubEntityLocationProps | undefined>;
|
|
58
|
+
isPointInside(id: Id64String, point: XYZProps): Promise<PointInsideResultProps[] | undefined>;
|
|
59
|
+
private getElementGeometryResults;
|
|
60
|
+
private doElementGeometryOperation;
|
|
61
|
+
booleanOperation(id: Id64String, params: BooleanOperationProps, opts: ElementGeometryResultOptions): Promise<ElementGeometryResultProps | undefined>;
|
|
62
|
+
sewSheets(id: Id64String, params: SewSheetProps, opts: ElementGeometryResultOptions): Promise<ElementGeometryResultProps | undefined>;
|
|
63
|
+
thickenSheets(id: Id64String, params: ThickenSheetProps, opts: ElementGeometryResultOptions): Promise<ElementGeometryResultProps | undefined>;
|
|
64
|
+
cutSolid(id: Id64String, params: CutProps, opts: ElementGeometryResultOptions): Promise<ElementGeometryResultProps | undefined>;
|
|
65
|
+
embossBody(id: Id64String, params: EmbossProps, opts: ElementGeometryResultOptions): Promise<ElementGeometryResultProps | undefined>;
|
|
66
|
+
imprintBody(id: Id64String, params: ImprintProps, opts: ElementGeometryResultOptions): Promise<ElementGeometryResultProps | undefined>;
|
|
67
|
+
sweepAlongPath(id: Id64String, params: SweepPathProps, opts: ElementGeometryResultOptions): Promise<ElementGeometryResultProps | undefined>;
|
|
68
|
+
loftProfiles(id: Id64String, params: LoftProps, opts: ElementGeometryResultOptions): Promise<ElementGeometryResultProps | undefined>;
|
|
69
|
+
offsetFaces(id: Id64String, params: OffsetFacesProps, opts: ElementGeometryResultOptions): Promise<ElementGeometryResultProps | undefined>;
|
|
70
|
+
offsetEdges(id: Id64String, params: OffsetEdgesProps, opts: ElementGeometryResultOptions): Promise<ElementGeometryResultProps | undefined>;
|
|
71
|
+
hollowFaces(id: Id64String, params: HollowFacesProps, opts: ElementGeometryResultOptions): Promise<ElementGeometryResultProps | undefined>;
|
|
72
|
+
sweepFaces(id: Id64String, params: SweepFacesProps, opts: ElementGeometryResultOptions): Promise<ElementGeometryResultProps | undefined>;
|
|
73
|
+
spinFaces(id: Id64String, params: SpinFacesProps, opts: ElementGeometryResultOptions): Promise<ElementGeometryResultProps | undefined>;
|
|
74
|
+
deleteSubEntities(id: Id64String, params: DeleteSubEntityProps, opts: ElementGeometryResultOptions): Promise<ElementGeometryResultProps | undefined>;
|
|
75
|
+
transformSubEntities(id: Id64String, params: TransformSubEntityProps, opts: ElementGeometryResultOptions): Promise<ElementGeometryResultProps | undefined>;
|
|
76
|
+
blendEdges(id: Id64String, params: BlendEdgesProps, opts: ElementGeometryResultOptions): Promise<ElementGeometryResultProps | undefined>;
|
|
77
|
+
chamferEdges(id: Id64String, params: ChamferEdgesProps, opts: ElementGeometryResultOptions): Promise<ElementGeometryResultProps | undefined>;
|
|
78
|
+
}
|
|
77
79
|
//# sourceMappingURL=EditBuiltInCommand.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EditBuiltInCommand.d.ts","sourceRoot":"","sources":["../../src/EditBuiltInCommand.ts"],"names":[],"mappings":"AAIA;;GAEG;AAEH,OAAO,EAAiB,iBAAiB,EAA2B,UAAU,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC1H,OAAO,EAAY,aAAa,EAAoB,YAAY,EAAa,cAAc,EAAE,QAAQ,EAAsB,MAAM,sBAAsB,CAAC;AACxJ,OAAO,EAAoB,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AACjE,OAAO,EAA0E,iBAAiB,EAAmB,4BAA4B,EAAE,mCAAmC,EAAqD,mBAAmB,EAA6C,qBAAqB,EAAE,iBAAiB,EAAiC,MAAM,oBAAoB,CAAC;AAC/Y,OAAO,EAAE,2BAA2B,EAAE,eAAe,EAAE,qBAAqB,EAAE,cAAc,EAAE,iBAAiB,EAAE,uBAAuB,EAAE,QAAQ,EAAE,oBAAoB,EAAE,uBAAuB,EAAuB,0BAA0B,EAAE,4BAA4B,EAAE,0BAA0B,EAAE,WAAW,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,uBAAuB,EAAE,wBAAwB,EAAE,gBAAgB,EAAE,YAAY,EAAE,oBAAoB,EAAE,SAAS,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,sBAAsB,EAAE,aAAa,EAAE,uBAAuB,EAAE,cAAc,EAA4B,sBAAsB,EAAE,sBAAsB,EAAE,cAAc,EAAE,aAAa,EAAE,eAAe,EAAE,cAAc,EAAE,iBAAiB,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AACpzB,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,aAAa;AACb,qBAAa,wBAAyB,SAAQ,WAAY,YAAW,2BAA2B;IAGzD,SAAS,CAAC,IAAI,EAAE,MAAM;IAF3D,OAAuB,SAAS,SAA4C;gBAEzD,MAAM,EAAE,QAAQ,EAAY,IAAI,EAAE,MAAM;
|
|
1
|
+
{"version":3,"file":"EditBuiltInCommand.d.ts","sourceRoot":"","sources":["../../src/EditBuiltInCommand.ts"],"names":[],"mappings":"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"}
|