Revit 2025.3 API
TransformInverse Property |
The inverse transformation of this transformation.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public Transform Inverse { get; }
Public ReadOnly Property Inverse As Transform Get
public: property Transform^ Inverse { Transform^ get (); }
member Inverse : Transform with get
Property Value
Transform| Exception | Condition |
|---|---|
| InvalidOperationException | Thrown when this transformation is not conformal or invertible. |
The transformation matrix A is invertible if there exists a transformation matrix B
such that A*B = B*A = I (identity).
See Also