Skip to Content

XYPosition

所有位置都存储在具有 x 和 y 坐标的对象中。

¥All positions are stored in an object with x and y coordinates.

export type XYPosition = { x: number; y: number; };
Last updated on