📔
Today Joonas Learned
  • Home
  • About Me
  • Chrome Extension
    • CSS injection
  • Design Pattern
    • SOLID 원칙
      • 1. SRP
      • 2. OCP
      • 3. LSP
      • 4. ISP
      • 5. DIP
    • 생성 패턴
      • Singleton Pattern
      • Abstract Factory Pattern
      • Factory Method Pattern
    • 구조 패턴
      • Adapter Pattern
      • Bridge Pattern
      • Composite Pattern
      • Decorator Pattern
      • Facade Pattern
      • Proxy Pattern
    • 행위 패턴
      • Command Pattern
      • Observer Pattern
      • State Pattern
      • Strategy Pattern
      • Template Method Pattern
  • Graphics
    • OpenGL ES
      • 파이프라인
      • 삼각형 그리기
      • 삼각형 움직이기
      • 다각형 그리기
      • 정사면체 그리기
      • [WIP] 마인크래프트 블럭 만들기
      • [WIP] Lighting, Normal Mapping
  • Internet
    • iOS/Safari
  • Javascript
    • async, defer 속성
    • 나머지 매개변수 (Rest parameter)
    • 화살표 함수 표현 (arrow function expression)
    • Template Literals
    • TDZ (Temporal Dead Zone)
    • Spread syntax (...)
  • Network
    • OSI 7 계층 모델
  • Uncategorized
    • 2021/12/07
    • 2020/09/03
    • 2020/09/04
    • 2020/08/22
  • git/VCS
    • Merge 커밋 메시지 수정
Powered by GitBook
On this page
  • Normal Mapping
  • Light

Was this helpful?

  1. Graphics
  2. OpenGL ES

[WIP] Lighting, Normal Mapping

노멀맵과 빛, 광원(Light)

Previous[WIP] 마인크래프트 블럭 만들기NextInternet

Last updated 3 years ago

Was this helpful?

Normal Mapping

노멀맵과 라이트

노멀맵을 대충 만들어주는 사이트:

두 종류

  • Model/Object Space Normal Map

  • Tangent Space Normal Map

Light

빛의 유형

  • point light – 한 점에서 광원이 전체로 뻗는 형태. 각 버텍스마다 다른 빛의 방향을 가진다. (전구, 횃불 등)

  • spot light – 한 점에서 콘(cone) 형태로 정해진 각도만큼 밝힘.

  • directional light – 위치는 없고 방향만 있는 빛. 모든 정점에 동일한 세기와 각도로 도착한다. (태양광)

Lambertian reflectance

Phong shading

http://www.smart-page.net/smartnormal/