@itwin/core-frontend
Version:
iTwin.js frontend components
17 lines • 602 B
TypeScript
/** @packageDocumentation
* @module Rendering
*/
import { VertexIndices } from "./VertexIndices";
import { VertexTable } from "./VertexTable";
import { PolylineArgs } from "../../../render/PolylineArgs";
/** Describes point string geometry to be submitted to the rendering system.
* @internal
*/
export interface PointStringParams {
vertices: VertexTable;
indices: VertexIndices;
weight: number;
}
/** @internal */
export declare function createPointStringParams(args: PolylineArgs, maxTextureSize: number): PointStringParams | undefined;
//# sourceMappingURL=PointStringParams.d.ts.map