dev #680

Merged
ysCha merged 220 commits from dev into dev-deploy 2026-03-03 19:58:23 +09:00
Showing only changes of commit fdbedb23a4 - Show all commits

View File

@ -102,7 +102,7 @@ export function useObjectBatch({ isHidden, setIsHidden }) {
const pointer = getIntersectMousePoint(e)
surfaceShapePolygons.forEach((surface) => {
if (surface.inPolygon({ x: pointer.x, y: pointer.y })) {
if (surface.inPolygonImproved({ x: pointer.x, y: pointer.y })) {
selectedSurface = surface
}
})
@ -212,7 +212,7 @@ export function useObjectBatch({ isHidden, setIsHidden }) {
const pointer = getIntersectMousePoint(e)
surfaceShapePolygons.forEach((surface) => {
if (surface.inPolygon({ x: pointer.x, y: pointer.y })) {
if (surface.inPolygonImproved({ x: pointer.x, y: pointer.y })) {
selectedSurface = surface
rect = new fabric.Rect({