Revit.SDK.Samples.SlabShapeEditing.CS.Matrix4.ScaleInverse C# (CSharp) 메소드

ScaleInverse() 공개 메소드

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