Fusion.Engine.Graphics.Camera.GetCameraMatrix C# (CSharp) 메소드

GetCameraMatrix() 공개 메소드

Gets camera matrix for given stereo eye.
public GetCameraMatrix ( StereoEye stereoEye ) : System.Matrix
stereoEye StereoEye
리턴 System.Matrix
		public Matrix GetCameraMatrix ( StereoEye stereoEye )
		{
			if (stereoEye==StereoEye.Mono) return cameraMatrix;
			if (stereoEye==StereoEye.Left) return cameraMatrixL;
			if (stereoEye==StereoEye.Right) return cameraMatrixR;
			throw new ArgumentException("stereoEye");
		}