polygonjs-engine
Version:
node-based webgl 3D engine https://polygonjs.com
19 lines (18 loc) • 521 B
TypeScript
import { Group } from 'three/src/objects/Group';
import { PolyScene } from '../../engine/index_all';
interface CoreSVGLoaderOptions {
drawFillShapes: boolean;
fillShapesWireframe: boolean;
drawStrokes: boolean;
strokesWireframe: boolean;
}
export declare class CoreSVGLoader {
private url;
private scene;
constructor(url: string, scene: PolyScene);
load(options: CoreSVGLoaderOptions): Promise<Group>;
private _onLoaded;
private _drawShapes;
private _drawStrokes;
}
export {};