Transform2dGetAffineElements Method |
Gets the six coefficients used by the traditional 2d drawing APIs.
See the remarks on
ToAffineElements.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 9.0
Syntaxpublic void GetAffineElements(
out double a,
out double b,
out double c,
out double d,
out double tx,
out double ty
)
Public Sub GetAffineElements (
<OutAttribute> ByRef a As Double,
<OutAttribute> ByRef b As Double,
<OutAttribute> ByRef c As Double,
<OutAttribute> ByRef d As Double,
<OutAttribute> ByRef tx As Double,
<OutAttribute> ByRef ty As Double
)
Parameters
- a
- Type: SystemDouble
M00. - b
- Type: SystemDouble
M10. - c
- Type: SystemDouble
M01. - d
- Type: SystemDouble
M11. - tx
- Type: SystemDouble
M02, the X translation. - ty
- Type: SystemDouble
M12, the Y translation.
See Also