원근투영 행렬(Perspective Matrix)를 나타내는 Matrix4x4out 에 담아 돌려줍니다.

Syntax

camera.perspective()
camera.perspective(out)

Parameters

out

결과를 담을 Matrix4x4 . 인자를 주지 않으면 임시변수를 생성합니다.

Return value

오브젝트 좌표(object coordinate)를 클립 좌표(clip coordinate)로 변환하는 행렬을 나타내는 Matrix4x4 . out 인자를 주었다면 out 에 담아 돌려줍니다.

Description