Append the specified matrices to the matrix
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static void Append(
this IMatrix matrix,
params IMatrix[] matrices
)
<ExtensionAttribute>
Public Shared Sub Append (
matrix As IMatrix,
ParamArray matrices As IMatrix()
)
[<ExtensionAttribute>]
static member Append :
matrix : IMatrix *
matrices : IMatrix[] -> unit
Parameters
- matrix
- Type: Eto.DrawingIMatrix
Matrix to append to - matrices
- Type: Eto.DrawingIMatrix
Matrices to append 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