Open Tostifrosti opened 6 years ago
https://github.com/furnishup/blueprint3d/blob/cac8b62c1a3839e929334bdc125bf8a74866be9e/src/core/utils.ts#L225 tMinY = Math.min(tMinX, corners[tI].y); should be tMinY = Math.min(tMinY, corners[tI].y);
tMinY = Math.min(tMinX, corners[tI].y);
tMinY = Math.min(tMinY, corners[tI].y);
What exactly has changed here?
https://github.com/furnishup/blueprint3d/blob/cac8b62c1a3839e929334bdc125bf8a74866be9e/src/core/utils.ts#L225
tMinY = Math.min(tMinX, corners[tI].y);
should betMinY = Math.min(tMinY, corners[tI].y);