Prepends the specified matrices to the matrix
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static void Prepend(
this IMatrix matrix,
params IMatrix[] matrices
)
<ExtensionAttribute>
Public Shared Sub Prepend (
matrix As IMatrix,
ParamArray matrices As IMatrix()
)
[<ExtensionAttribute>]
static member Prepend :
matrix : IMatrix *
matrices : IMatrix[] -> unit
Parameters
- matrix
- Type: Eto.DrawingIMatrix
Matrix to prepend to - matrices
- Type: Eto.DrawingIMatrix
Matrices to prepend to the matrix
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IMatrix. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also