MCPcopy Create free account
hub / github.com/TheRealMJP/BakingLab / ProjectOntoSH4

Function ProjectOntoSH4

SampleFramework11/v1.02/Graphics/SH.cpp:19–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17{
18
19SH4 ProjectOntoSH4(const Float3& dir)
20{
21 SH4 sh;
22
23 // Band 0
24 sh.Coefficients[0] = 0.282095f;
25
26 // Band 1
27 sh.Coefficients[1] = 0.488603f * dir.y;
28 sh.Coefficients[2] = 0.488603f * dir.z;
29 sh.Coefficients[3] = 0.488603f * dir.x;
30
31 return sh;
32}
33
34SH4Color ProjectOntoSH4Color(const Float3& dir, const Float3& color)
35{

Callers 2

ProjectOntoSH4ColorFunction · 0.85
EvalSH4CosineFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected