Skip to content

Commit

Permalink
Improved the readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow committed Mar 4, 2018
1 parent 6c63e3f commit 2f0e3c8
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
4 changes: 4 additions & 0 deletions SkiaSharp.Extended.Iconify/README.md
Expand Up @@ -8,8 +8,12 @@ characters.
For example, if we wanted to draw this string using colored characters
from FontAwesome (or some other icon font) mixed in with other characters:

<center>

![FontAwesome](../images/FontAwesome.png)

</center>

To do this using factory SkiaSharp, there would be lots of work that
needed doing. But, not anymore.

Expand Down
5 changes: 0 additions & 5 deletions SkiaSharp.Extended.Svg/README.md
Expand Up @@ -44,10 +44,5 @@ var matrix = SKMatrix.MakeScale(scale, scale);
canvas.DrawPicture(svg.Picture, ref matrix);
```

_NOTE: although this library is in the `SkiaSharp.Extended.XXX` repository, this
library retains the `SkiaSharp.Svg` assembly name and legacy namespace to avoid
any breaking changes._


[google-svg]: https://groups.google.com/d/msg/skia-discuss/8grSzbS0GnI/GxsAdCCUU9cJ
[ngraphics]: https://github.com/praeclarum/NGraphics
12 changes: 11 additions & 1 deletion SkiaSharp.Extended/README.md
Expand Up @@ -41,7 +41,17 @@ canvas.DrawStar(

## SKPathInterpolation

In addition to basic shapes, there is also a great way to create interpolated paths - this is awesome for creating animated shapes or transitions:
In addition to basic shapes, there is also a great way to create interpolated
paths - this is awesome for creating animated shapes or transitions.

<center>

![Path Interpolation](../images/PathInterpolation.gif)

</center>

The code is also very simple, just create a `SKPathInterpolation` and then ask
for each step:

```csharp
var interpolation = new SKPathInterpolation(startPath, endPath);
Expand Down
Binary file added images/PathInterpolation.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2f0e3c8

Please sign in to comment.