Revit.SDK.Samples.SlabShapeEditing.CS.Matrix4.ScaleInverse C# (CSharp) Method

ScaleInverse() public method

if m_matrix is a scale matrix,this method can get the scale inverse matrix.
public ScaleInverse ( ) : Matrix4
return Matrix4
        public Matrix4 ScaleInverse()
        {
            return new Matrix4(1 / m_matrix[0,0]);
        }