11 lines
429 B
TypeScript
11 lines
429 B
TypeScript
![]() |
import { Geom3 } from "@jscad/modeling/src/geometries/types";
|
||
|
import { Vec3 } from "@jscad/modeling/src/maths/vec3";
|
||
|
import { Matrix4 } from "three";
|
||
|
export interface Geom3Res {
|
||
|
polygons: Array<{
|
||
|
vertices: Array<Vec3>;
|
||
|
plane: [number, number, number, number];
|
||
|
}>;
|
||
|
}
|
||
|
export declare function CSGIntersect(csg1: Geom3, csg2: Geom3, csg2tranfrom: Matrix4): Geom3Res;
|
||
|
//# sourceMappingURL=CSGIntersect.d.ts.map
|