forma-embedded-view-sdk
Version:
The Forma Embedded View SDK is a JavaScript library for creating custom extensions in Autodesk Forma (previously Spacemaker).
23 lines (22 loc) • 757 B
JavaScript
import { ExperimentalAnalysisApi } from "./analysis.js";
import { ExperimentalHousingApi } from "./housing.js";
import { ExperimentalRenderApi } from "./render.js";
/**
* Experimental APIs are subject to change at any time without notice.
*
* Do not rely on experimental APIs in production code.
*
* @remarks
* Available via {@link auto.Forma | Forma}.{@link index.EmbeddedViewSdk.experimental | experimental}.
*/
export class ExperimentalApi {
analysis;
housing;
render;
/** @hidden */
constructor(iframeMessenger) {
this.analysis = new ExperimentalAnalysisApi(iframeMessenger);
this.housing = new ExperimentalHousingApi(iframeMessenger);
this.render = new ExperimentalRenderApi(iframeMessenger);
}
}