开发:更新api
This commit is contained in:
11
types/Common/CSGIntersect.d.ts
vendored
Normal file
11
types/Common/CSGIntersect.d.ts
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
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
|
Reference in New Issue
Block a user