import { Vec3 } from '../math/Vec3'; /** * 计算体积 * @param faces 一个几何体的所有三角面 */ export declare function calculateVolume(faces: Vec3[][]): number;