Files
2nd/10_Wiki/Topic_Programming/Programming & Language/Vergence-Accommodation Conflicts.md
T
Antigravity Agent 9148c358d0 docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를
Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류.

- 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로
  자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거,
  동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거.
- 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming,
  Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business,
  Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로,
  나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는
  title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백).
  원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지.
- 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서.
- 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는
  지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지.
- Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경.
- 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
2026-07-05 00:33:48 +09:00

4.9 KiB

id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
id title category status canonical_id aliases duplicate_of source_trust_level confidence_score verification_status tags raw_sources last_reinforced github_commit tech_stack
wiki-20260508-vergence-accommodation-conflicts-redir Vergence-Accommodation Conflicts 10_Wiki/Topics verified self
VAC
vergence accommodation conflict
focal mismatch
none A 0.91 applied
vr
perception
optics
ux
2026-05-10 pending
language framework
TypeScript Three.js / WebXR

Vergence-Accommodation Conflicts

매 한 줄

"매 eye 의 vergence (cross-eye angle) 와 accommodation (lens focus) 의 mismatch 의 eye strain / sickness". 매 stereoscopic VR / AR 의 fundamental 한계 — 매 fixed focal plane 의 cause. 2026 의 Vision Pro 의 여전히 mitigation 만 가능 — 매 light field display 의 future.

매 핵심

매 원인

  • Real world: 매 vergence (eye 가 object 로 cross) 와 accommodation (lens focus 의 거리) 의 동기.
  • VR/AR: 매 vergence 의 virtual depth 의 따라 변화 — 매 accommodation 의 fixed display focal plane (~2m) 에 lock.
  • Conflict: 매 brain 의 두 cue 의 mismatch 의 fatigue / blur / nausea 의 trigger.

매 mitigation

  • Dolly comfort zone: 매 0.5-2m 의 main interaction — focal mismatch minimum.
  • Reduce small text: 매 close-up text 의 conflict 의 amplify.
  • Vary focus only with intent: 매 sudden depth change 의 avoid.
  • Pupil-aware DOF: 매 eye-tracking 의 dynamic blur (Vision Pro).
  • Light field display (future): 매 multi-focal — true accommodation cue.

매 응용

  1. UI design — 매 menu 의 1.5m 거리 의 default.
  2. AR overlay 의 real-world depth match — 매 ARKit / ARCore 의 plane anchor.
  3. eye-tracked foveated rendering 의 결합.

💻 패턴

매 Three.js + WebXR 의 comfort zone 의 UI 배치

const COMFORT_DISTANCE = 1.5;  // m

const menu = new THREE.Group();
menu.position.set(0, 1.5, -COMFORT_DISTANCE);  // 매 1.5m 의 fixed focal
camera.parent.add(menu);  // 매 head-locked

// 매 menu 의 readable 의 maintain

매 거리 별 text size 의 scaling

function readableTextSize(distance: number): number {
  // 매 angular size = arctan(size / distance) — 매 적정 1-2°
  return distance * 0.025;  // 매 1.5m 의 ~3.75cm height
}

매 Eye-tracking 의 dynamic DOF (Vision Pro / Quest Pro)

const xrSession = renderer.xr.getSession();
const gazeRay = await xrSession?.requestReferenceSpace('viewer');

// 매 gaze 의 depth 의 추정
function applyDOF(focusDistance: number) {
  postProcessing.bokehPass.uniforms.focus.value = focusDistance;
  postProcessing.bokehPass.uniforms.aperture.value = 0.025;
}

매 Sudden depth change 의 mitigation

// 매 fade transition 의 사용
async function transitionScene(newDepth: number) {
  await fadeToBlack(200);
  scene.position.z = -newDepth;
  await fadeFromBlack(200);
}

매 AR plane anchor 의 align

// 매 WebXR hit-test
const hitTestSource = await xrSession.requestHitTestSource({ space: viewerSpace });

xrSession.requestAnimationFrame((time, frame) => {
  const results = frame.getHitTestResults(hitTestSource);
  if (results.length > 0) {
    const pose = results[0].getPose(refSpace);
    object.position.setFromMatrixPosition(new THREE.Matrix4().fromArray(pose.transform.matrix));
    // 매 real surface 의 attach — 매 vergence/accommodation 의 align
  }
});

매 Comfort range 의 enforce

function clampInteractionDistance(target: THREE.Object3D) {
  const dist = camera.position.distanceTo(target.position);
  if (dist < 0.3) target.scale.setScalar(0.3 / dist);  // 매 too-close 시 shrink
  if (dist > 3) target.scale.setScalar(dist / 3);     // 매 too-far 시 enlarge
}

매 결정 기준

상황 Approach
UI / menu 1.5-2m fixed (comfort zone)
Reading 0.7-1m, large font
AR overlay real surface anchor
Cinematic distant scene (>3m)
Sudden depth jump fade transition

기본값: 0.5-2m comfort zone 의 default, 매 UI 의 1.5m 의 fixed.

🔗 Graph

  • 응용: VR Sickness · 깊이 지각(Depth perception)
  • Adjacent: Edge Bleeding · 가상현실(VR) 자전거 시뮬레이터

🤖 LLM 활용

언제: VR/AR UX 의 comfort design, UI 거리 의 권장, eye strain 의 explain. 언제 X: 매 specific HMD 의 hardware 의 specific recommendation 의 over-confidence — 매 device 의 명시.

안티패턴

  • Tiny text 의 close: 매 0.3m 의 small font — 매 conflict 의 max.
  • Sudden zoom: 매 fade 없는 depth jump — 매 nausea.
  • Floating UI 의 무한 거리: 매 readable 거리 의 무시.

🧪 검증 / 중복

  • Verified (Oculus VR Best Practices, Apple Vision Pro Human Interface Guidelines).
  • 신뢰도 A.

🕓 Changelog

날짜 변경
2026-05-08 Phase 1
2026-05-10 Manual cleanup — VAC FULL 작성