@fimbul-works/vec
Version:
A comprehensive TypeScript vector math library providing 2D, 3D, and 4D vector operations with a focus on performance and type safety.
9 lines (8 loc) • 358 B
TypeScript
import type { ArrayVector3D } from "./types.js";
/**
* Divides one 3D vector with another.
* @param {ArrayVector3D} xyz1 - First vector as `[x, y, z]`
* @param {ArrayVector3D} xyz2 - Second vector as `[x, y, z]`
* @returns {ArrayVector3D} The divided vector
*/
export declare const divide3D: (xyz1: ArrayVector3D, xyz2: ArrayVector3D) => ArrayVector3D;