@three3d/tools
Version:
@three3d/tools 提供了 ThreeJS 常用的工具库
19 lines • 558 B
TypeScript
/**
* 几何位置关系
*/
export declare enum GeometricRelationship {
Dissociation = "\u76F8\u79BB",
Intersect = "\u76F8\u4EA4",
Tangency = "\u76F8\u5207",
Contain = "\u5305\u542B"
}
/**
* 无限大的几何图形之间的关系
* @remarks
* 有以下几种情况:
* - Tangency:相切;
* - Dissociation:相离:
* - Intersect;相交;
*/
export type InfinityGeometricRelationship = GeometricRelationship.Dissociation | GeometricRelationship.Tangency | GeometricRelationship.Intersect;
//# sourceMappingURL=type.d.ts.map