Graphics/Light: Add missing GetInnerAngleCosine() and GetInvRadius() implementation
Former-commit-id: 7deb6b2dd76139ccc98801cdb36a27e1f5979722
This commit is contained in:
parent
26e7fa1686
commit
1926b28d63
|
|
@ -32,6 +32,16 @@ namespace Nz
|
||||||
return m_innerAngle;
|
return m_innerAngle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline float Light::GetInnerAngleCosine() const
|
||||||
|
{
|
||||||
|
return m_innerAngleCosine;
|
||||||
|
}
|
||||||
|
|
||||||
|
inline float Light::GetInvRadius() const
|
||||||
|
{
|
||||||
|
return m_invRadius;
|
||||||
|
}
|
||||||
|
|
||||||
inline LightType Light::GetLightType() const
|
inline LightType Light::GetLightType() const
|
||||||
{
|
{
|
||||||
return m_type;
|
return m_type;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue