From c24e55614666793a689944a112a2e825e6517fea Mon Sep 17 00:00:00 2001 From: umsangdon Date: Sat, 29 Aug 2026 17:04:57 +0900 Subject: [PATCH] =?UTF-8?q?fix(B07):=20=ED=95=80=EC=B9=98=20=ED=99=95?= =?UTF-8?q?=EB=8C=80=EA=B0=80=20=EB=84=88=EB=AC=B4=20=EB=8A=90=EB=A0=A4=20?= =?UTF-8?q?=EC=A7=80=EC=88=98=EB=A5=BC=202=EB=B0=B0=EB=A1=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PINCH_ZOOM_EXPONENT 0.0015 -> 0.003. 핀치 5회(deltaY 10)에 228%에서 264%로 움직인다. 마우스 휠 한 칸은 종전대로 10%(228%->255%). Co-Authored-By: Claude Fable 5 --- B07_DesignDetail/openwebcad/src/App.consts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/B07_DesignDetail/openwebcad/src/App.consts.ts b/B07_DesignDetail/openwebcad/src/App.consts.ts index ecb9e1b0..7f4c9292 100644 --- a/B07_DesignDetail/openwebcad/src/App.consts.ts +++ b/B07_DesignDetail/openwebcad/src/App.consts.ts @@ -149,7 +149,7 @@ export const WHEEL_ZOOM_EXPONENT = 0.000953; * 트랙패드 핀치(ctrl+휠)용 지수. 핀치는 한 동작의 델타 총합이 휠 한 칸보다 작아 * 같은 값을 쓰면 거의 안 움직인다. 확대가 너무 빠르면/느리면 이 값만 조정한다. */ -export const PINCH_ZOOM_EXPONENT = 0.0015; +export const PINCH_ZOOM_EXPONENT = 0.003; /** deltaMode가 줄(1)·쪽(2) 단위로 올 때 픽셀로 환산하는 값 (마우스 휠 한 칸 = 100px 기준). */ export const WHEEL_LINE_PX = 33;