System.Drawing.Drawing2D.GraphicsPath.Flatten(System.Drawing.Drawing2D.Matrix)

Here are the examples of the csharp api class System.Drawing.Drawing2D.GraphicsPath.Flatten(System.Drawing.Drawing2D.Matrix) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: NHibernate.Spatial
Source File: GeometryCollectionGraphicsPath.cs
public GraphicsPathIterator GetPathIterator(Matrix at)
        {
            var p = (GraphicsPath)Path.Clone();
            p.Flatten(at);
            return new GraphicsPathIterator(p);
        }