CSPspEmu.Core.Gpu.State.GpuMatrix4x3Struct.LoadIdentity C# (CSharp) Method

LoadIdentity() public method

public LoadIdentity ( ) : void
return void
        public void LoadIdentity()
        {
            for (int Row = 0; Row < 4; Row++)
            {
                for (int Column = 0; Column < 4; Column++)
                {
                    SetPosition(Column, Row, (Column == Row) ? 1f : 0f);
                }
            }
        }