MCPcopy Create free account
hub / github.com/TheRealMJP/DeferredTexturing / Initialize

Method Initialize

SampleFramework12/v1.00/Graphics/Camera.cpp:24–32  ·  view source on GitHub ↗

================================================================================================= Camera =================================================================================================

Source from the content-addressed store, hash-verified

22// Camera
23//=================================================================================================
24void Camera::Initialize(float nearClip, float farClip)
25{
26 nearZ = nearClip;
27 farZ = farClip;
28 world = Float4x4();
29 view = Float4x4();
30 position = Float3(0.0f, 0.0f, 0.0f);
31 orientation = Quaternion();
32}
33
34void Camera::WorldMatrixChanged()
35{

Callers 6

PrepareShadowCascadesFunction · 0.45
CreateBuffersMethod · 0.45
MakeSphereGeometryFunction · 0.45
MakeBoxGeometryFunction · 0.45
MakeConeGeometryFunction · 0.45

Calls 4

Float4x4Class · 0.85
Float3Class · 0.85
QuaternionClass · 0.85
InitializeFunction · 0.70

Tested by

no test coverage detected