일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 김양재 목사님
- node.js
- Artificial Intelligence
- c++
- 데이터 과학
- No SQL
- nodeJS
- WebGL
- Machine Learning
- 확률
- Deep learning
- 우리들교회
- 김양재 목사
- R
- openCV
- Big Data
- data science
- 빅 데이타
- Statistics
- 주일설교
- probability
- 빅 데이터
- 인공지능
- 통계
- 김양재
- 빅데이타
- 몽고디비
- 빅데이터
- MongoDB
- 딥러닝
Archives
- Today
- Total
목록normal shader (1)
Scientific Computing & Data Science
Display Normal Shader
Shader "Tutorial/Display Normals" {SubShader { Pass { CGPROGRAM#pragma vertex vert#pragma fragment frag#include "UnityCG.cginc" struct v2f { float4 pos : SV_POSITION; float3 color : COLOR0;}; v2f vert (appdata_base v){ v2f o; o.pos = mul (UNITY_MATRIX_MVP, v.vertex); o.color = v.normal * 0.5 + 0.5; return o;} half4 frag (v2f i) : COLOR{ return half4 (i.color, 1);}ENDCG }}Fallback "VertexLit" }
CG & Video Games/Unity 3D
2013. 5. 26. 12:06