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

14 lines
605 B
TypeScript
Raw Normal View History

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