增加户型部分
This commit is contained in:
7
types/Geometry/CurveIntersection.d.ts
vendored
7
types/Geometry/CurveIntersection.d.ts
vendored
@@ -11,14 +11,15 @@ export declare class CurveIntersection {
|
||||
* 交点数据集,key 为曲线 value 为和它相交的(曲线和交点的Map)
|
||||
*/
|
||||
intersect: Map<Curve, Map<Curve, Vector3[]>>;
|
||||
intersect2: Map<Curve, number[]>;
|
||||
intersect2: Map<Curve, [number, Vector3][]>;
|
||||
intersect3: [Curve, Curve, Vector3[]][];
|
||||
/**
|
||||
* @param {Curve[]} cus 请注意数组的顺序会被更改,如果你在意数组的顺序,请拷贝数组后传进来
|
||||
* @memberof CurveIntersection
|
||||
*/
|
||||
constructor(cus: Curve[], parseIntersectionParam?: boolean, intType?: IntersectOption, fuzz?: number);
|
||||
constructor(cus: Curve[], parseIntersectionParam?: boolean, intType?: IntersectOption, fuzz?: number, parseRecord?: boolean);
|
||||
protected IntersectWith2(c1: Curve, c2: Curve, intType: IntersectOption): import("../GraphicsSystem/IntersectWith").IntersectResult[];
|
||||
protected AppendIntersectionParams(curve: Curve, params: number[]): void;
|
||||
protected AppendIntersectionParams(curve: Curve, params: [number, Vector3][]): void;
|
||||
protected GenBox(cus: Curve[]): void;
|
||||
protected SortCurve(cus: Curve[]): void;
|
||||
GetIntersect(cu: Curve): Map<Curve, Vector3[]>;
|
||||
|
Reference in New Issue
Block a user