canvas/node_modules/@any-touch/compute/dist/ComputeVectorForMutli.d.ts
2025-07-14 10:54:06 +08:00

12 lines
362 B
TypeScript

import type { Input } from '@any-touch/shared';
/**
*
* @param input 输入
* @returns 记录多点输入时的"起/上一个/终"向量
*/
export default function (): (input: Input) => {
startVecotr: import("@any-touch/shared").Point;
prevVecotr: import("@any-touch/shared").Point;
activeVecotr: import("@any-touch/shared").Point;
};