Compare commits

...

3 Commits

Author SHA1 Message Date
8965137a86 Merge pull request 'dev' (#228) from dev into dev-deploy
Reviewed-on: #228
2025-07-22 15:12:22 +09:00
ca0620bd23 내부 확인 로직 수정 2025-07-22 14:03:48 +09:00
d52fdb23a1 오브젝트 배치 오류 수정 2025-07-22 13:53:06 +09:00

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({