@itwin/core-frontend
Version:
iTwin.js frontend components
15 lines • 727 B
TypeScript
import { Instance } from "../../render/RenderInstancesParams";
import { FeatureTable } from "@itwin/core-common";
import { InstancedGraphicProps } from "../../render/InstancedGraphicParams";
/** Used internally by [[RenderInstancesParamsBuilder]] to produce an InstancedGraphicProps.
* Use [[add]] to append [[Instance]]s, then [[finish]] to obtain an InstancedGraphicProps.
*/
export declare class InstancedGraphicPropsBuilder {
private readonly _instances;
private readonly _transformRange;
private _haveSymbology;
add(instance: Instance): void;
get length(): number;
finish(featureTable: FeatureTable | undefined): InstancedGraphicProps;
}
//# sourceMappingURL=InstancedGraphicPropsBuilder.d.ts.map