You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
4 months ago | |
|---|---|---|
| .. | ||
| dist | 4 months ago | |
| types | 4 months ago | |
| LICENSE | 4 months ago | |
| README.md | 4 months ago | |
| package.json | 4 months ago | |
README.md
@antv/g-plugin-canvas-picker
基于 Canvas2D API 实现的拾取:
- 使用 R-Tree 空间索引查找拾取点命中的一系列图形包围盒
- 在这些图形中找到最顶层的一个图形,依据
z-index - 使用数学计算精确判定是否命中该图形,例如 Circle 测算到圆心距离是否小于半径
该方案基于 CPU,因此优化点在于包围盒相交运算是否足够快。