import { Vec3 } from "../math/Vec3";
import { Orientation } from "../struct/data/type";
export interface ISplitResult {
    negative: Vec3[];
    positive: Vec3[];
    common: Vec3[];
    orientation: Orientation;
}
