I have a image moving around a complex path made up with multiple line segments. I want to draw over the path as if the image is leaving a 'snail trail' over the path, is there anyway I can do this ? I have looked at multiple examples of similar things but nothing is suitable yet. Thanks Image included as example :
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
You can use Path Animations with
MatrixTransform
to achieve this motion. Depending on the content of your "Complex Path" you might then have multiple otherStoryBoard
's along the same animating path with different alpha values to thus give a trail effect.Also have a look over at this SO Question for the above concept applied to a
Path