Summary
Attempts to interpolate between two transform operations.
- Namespace
- Avalonia
.Media .Transformation - Containing Type
- TransformOperation
Syntax
public static bool TryInterpolate(TransformOperation? from, TransformOperation? to, double progress, ref TransformOperation result)
Remarks
Based upon https://www.w3.org/TR/css-transforms-1/#interpolation-of-transform-functions.
Parameters
Name | Type | Description |
---|---|---|
from | TransformOperation? | Source operation. |
to | TransformOperation? | Target operation. |
progress | double | Interpolation progress. |
result | TransformOperation | Interpolation result that will be filled in when operation was successful. |
Return Value
Type | Description |
---|---|
bool |