mirror of
https://github.com/rrika/cdcEngineDXHR.git
synced 2024-12-03 19:01:19 +00:00
14 lines
337 B
C++
14 lines
337 B
C++
#pragma once
|
|
#include "cdcMath/Math.h"
|
|
|
|
namespace cdc {
|
|
|
|
Matrix BuildPerspectiveLH(float fov, float aspect, float nearz, float farz);
|
|
// BuildPerspectiveLHOffCenter
|
|
// BuildPerspectiveLHOffset
|
|
// BuildPerspectiveLHLinearZ
|
|
Matrix BuildOrthographicLH(float width, float height, float nearz, float farz);
|
|
// BuildOrthographicLHOffCenter
|
|
|
|
}
|