RectUtil.CreateBoundingRect
- Explore Optimizations
#99
Labels
effort-medium
Standard - 2 to 4 hours
priority-low
Get to it when you get to it. No rush.
type-chore
Clean-up and optimization
Current implementation is "gut feel" most efficient but different approaches should be profiled.
Ideas:
math.min(i + 2, points.Length)
instead of(i + 1) % points.Length
to avoid potential cache invalidation on super long collections4
but do a separatemath.min(batchMinX, minX)
callThe text was updated successfully, but these errors were encountered: