polygonjs-engine
Version:
node-based webgl 3D engine https://polygonjs.com
18 lines (17 loc) • 624 B
TypeScript
import { BaseSopOperation } from './_Base';
import { DefaultOperationParams } from '../_Base';
import { CoreGroup } from '../../geometry/Group';
interface SvgSopParams extends DefaultOperationParams {
url: string;
drawFillShapes: boolean;
fillShapesWireframe: boolean;
drawStrokes: boolean;
strokesWireframe: boolean;
}
export declare class SvgSopOperation extends BaseSopOperation {
static readonly DEFAULT_PARAMS: SvgSopParams;
static type(): Readonly<'svg'>;
cook(input_contents: CoreGroup[], params: SvgSopParams): Promise<CoreGroup>;
private _ensure_geometry_has_index;
}
export {};