We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
并不是所有情况都需要计算包围盒或者长度,不必要的计算将导致明显的性能损失。例如 Path 初始化时不应该计算长度,只有用户显式调用 getTotalLength / getPoint 时再进行。
getTotalLength / getPoint
另外 Arc / Cubic 都需要分段,分段数可以适当减少。
antvis/util#92
目前需要计算 Path 的时机有:
getPointAtLength / getPoint / getTotalLength
g-plugin-canvas-picker
The text was updated successfully, but these errors were encountered:
fix: delay the calculation of path totallength #1141
d4a9055
fix: delay the calculation of path totallength #1141 (#1142)
09e1776
* fix: delay the calculation of path totallength #1141 * fix: clip Group and its descendants correctly #1140 * feat: support multi-selection with shift keypress * Publish - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected] - @antv/[email protected]
xiaoiver
No branches or pull requests
并不是所有情况都需要计算包围盒或者长度,不必要的计算将导致明显的性能损失。例如 Path 初始化时不应该计算长度,只有用户显式调用
getTotalLength / getPoint
时再进行。另外 Arc / Cubic 都需要分段,分段数可以适当减少。
antvis/util#92
目前需要计算 Path 的时机有:
getPointAtLength / getPoint / getTotalLength
g-plugin-canvas-picker
The text was updated successfully, but these errors were encountered: