CoordinateExtent
坐标范围表示坐标系统中的两个点:一个在左上角,一个在右下角。它用于表示流程中节点的范围或视口的范围。
🌐 A coordinate extent represents two points in a coordinate system: one in the top left corner and one in the bottom right corner. It is used to represent the bounds of nodes in the flow or the bounds of the viewport.
export type CoordinateExtent = [[number, number], [number, number]];注释
🌐 Notes
- 期望
CoordinateExtent的属性通常默认为[[-∞, -∞], [+∞, +∞]]以表示无限范围。
Last updated on