9 lines
126 B
JavaScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
const zeroPoint = {
x: 0,
y: 0,
z: 0
};
const isNum = (v) => typeof v === 'number';
export { isNum, zeroPoint };