SmartQuant.Charting.Draw3D.TMat3x3.SetExchangeAxes C# (CSharp) Method

SetExchangeAxes() public method

public SetExchangeAxes ( int i, int j ) : void
i int
j int
return void
        public void SetExchangeAxes(int i, int j)
        {
            SetUnit();
            this.m[i, i] = this.m[j, j] = 0;
            this.m[i, j] = this.m[j, i] = 1;
        }