Revit 2026 API
Transform |
Constructs the transformation by specifying the scale and the translation.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 26.0.4.0 (26.0.4.0)
Syntax
public Transform1D( double scale, double translation )
Public Sub New ( scale As Double, translation As Double )
public: Transform1D( double scale, double translation )
new : scale : float * translation : float -> Transform1D
Parameters
- scale Double
- The scale of the transformation.
- translation Double
- The translational part of the transformation.
1D space is tranformed according to the following formula: t --> scale*t + translation
See Also