import { isVec3 } from"../../index";
/**
* Returns true if the value is a ray, false otherwise.
* @param v Value to be checked.
* @returns True or False.
*/exportfunctionisRay(v: any): boolean {
returnArray.isArray(v) && v.length === 2 && isVec3(v[0]) && isVec3(v[1]);
}