@archilogic/floor-plan-sdk 5.1.5 → 5.1.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.
- package/dist/fpe.d.ts +7 -14
- package/dist/fpe.js +2318 -3342
- package/dist/fpe.umd.cjs +4 -4
- package/package.json +1 -1
package/dist/fpe.d.ts
CHANGED
|
@@ -1446,9 +1446,9 @@ declare class LayoutEdgeElementBase extends LayoutElementBase {
|
|
|
1446
1446
|
private verifyEdges;
|
|
1447
1447
|
getEdges(): SpatialGraphEdge[];
|
|
1448
1448
|
getVertices(): SpatialGraphVertex[];
|
|
1449
|
-
getStartVertex(): SpatialGraphVertex;
|
|
1450
|
-
getEndVertex(): SpatialGraphVertex;
|
|
1451
|
-
getAxisPoints(): [Vector2_2, Vector2_2];
|
|
1449
|
+
getStartVertex(): SpatialGraphVertex | undefined;
|
|
1450
|
+
getEndVertex(): SpatialGraphVertex | undefined;
|
|
1451
|
+
getAxisPoints(): [Vector2_2, Vector2_2] | [];
|
|
1452
1452
|
getAxisLength(): number;
|
|
1453
1453
|
getEdgeAtLinearPosition(u: number): SpatialGraphEdge | undefined;
|
|
1454
1454
|
getEdgesAtLinearSegment(u: number, v: number): SpatialGraphEdge[];
|
|
@@ -1855,11 +1855,7 @@ declare class LayoutSpaceDivider extends LayoutEdgeElementBase {
|
|
|
1855
1855
|
parameters: LayoutSpaceDividerParameters;
|
|
1856
1856
|
constructor(id: string, edges: SpatialGraphEdge[]);
|
|
1857
1857
|
setParameters(parameters: RecursivePartial<LayoutSpaceDividerParameters>): void;
|
|
1858
|
-
getBoundingBox():
|
|
1859
|
-
min: Vector3;
|
|
1860
|
-
max: Vector3;
|
|
1861
|
-
transform: Transform3d;
|
|
1862
|
-
};
|
|
1858
|
+
getBoundingBox(): TransformBoundingBox3d;
|
|
1863
1859
|
}
|
|
1864
1860
|
|
|
1865
1861
|
declare interface LayoutSpaceDividerJson extends LayoutEdgeElementBaseJson {
|
|
@@ -2056,11 +2052,7 @@ declare class LayoutWall extends LayoutEdgeElementBase {
|
|
|
2056
2052
|
constructor(id: string, edges: SpatialGraphEdge[]);
|
|
2057
2053
|
copyForClone(wall: LayoutWall): void;
|
|
2058
2054
|
setParameters(parameters: RecursivePartial<LayoutWallParameters>): void;
|
|
2059
|
-
getBoundingBox():
|
|
2060
|
-
min: Vector3;
|
|
2061
|
-
max: Vector3;
|
|
2062
|
-
transform: Transform3d;
|
|
2063
|
-
};
|
|
2055
|
+
getBoundingBox(): TransformBoundingBox3d;
|
|
2064
2056
|
}
|
|
2065
2057
|
|
|
2066
2058
|
declare interface LayoutWallGeometryProfile {
|
|
@@ -2551,8 +2543,9 @@ declare class SpaceGraph {
|
|
|
2551
2543
|
readonly 'element:stairFlight': typeof LayoutStairFlight;
|
|
2552
2544
|
readonly 'element:window': typeof LayoutWindow;
|
|
2553
2545
|
}>;
|
|
2546
|
+
sourceSchemaVersion: string | undefined;
|
|
2554
2547
|
private emitter;
|
|
2555
|
-
constructor();
|
|
2548
|
+
constructor(sourceSchemaVersion?: string);
|
|
2556
2549
|
getEvents(): Record<string, Function>;
|
|
2557
2550
|
copyEvents(spaceGraph: SpaceGraph): void;
|
|
2558
2551
|
deleteNodeAtIndex(nodeIndex: number, nodes: SpaceGraphNode[], nodesById: Record<string, SpaceGraphNode>, nodesByType: NodesByType<Record<string, SpaceGraphNode>>): SpaceGraphNode | undefined;
|