webcad-ue4-api/types/Geometry/EdgeGeometry.d.ts

14 lines
605 B
TypeScript
Raw Normal View History

2024-10-29 17:14:43 +08:00
import { BufferGeometry } from "three";
import { Geom3Res, PolygonRes } from "../Common/CSGIntersect";
export declare class EdgesGeometry extends BufferGeometry {
/**
* 使Extrude实体的时候,,线,使FromCSG方法可解.
*/
FromGeometry(geometry: any, thresholdAngle?: number): this;
/**
*
*/
FromCSG(csg: Geom3Res): this;
PolygonsOutline(polygons: PolygonRes[], coords: number[]): void;
}
//# sourceMappingURL=EdgeGeometry.d.ts.map