/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { Box3, Vector3 } from 'three'; export declare function calculateTrajectoryBounds(origin: Vector3, direction: Vector3, minY: number, gravity: number, outBox: Box3): Box3; export declare function sampleParabolicCurve(start: Vector3, direction: Vector3, minY: number, gravity: number, points: Vector3[], offset?: number): void; //# sourceMappingURL=math-utils.d.ts.map