PSSMDemo.LightCameraBuilder.Build C# (CSharp) Method

Build() public method

ライトのビュー行列および射影行列を構築します。
public Build ( Matrix &lightView, Matrix &lightProjection ) : void
lightView Matrix ライトのビュー行列。
lightProjection Matrix ライトの射影行列。
return void
        public void Build(out Matrix lightView, out Matrix lightProjection)
        {
            UpdateEyeViewProperties();
            UpdateEyeProjectionProperties();
            UpdateEyeFrustum();

            BuildCore(out lightView, out lightProjection);
        }