import { ProfileObject } from "../profile_object.js"; import { Vector3 } from "../vector3.js"; /** Parameters for an extrusion surface */ export interface ExtrusionSurface { active: boolean; direction: Vector3; profile: ProfileObject; length: number; } //# sourceMappingURL=extrusion_surface.d.ts.map