// ----------------------------------------------------------------------- // // Copyright 2013 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Cairo.Media { using Perspex.Platform; public class StreamGeometryContextImpl : IStreamGeometryContextImpl { public StreamGeometryContextImpl() { // TODO: Implement } public void BeginFigure(Point startPoint, bool isFilled) { // TODO: Implement } public void LineTo(Point point) { // TODO: Implement } public void EndFigure(bool isClosed) { // TODO: Implement } public void Dispose() { // TODO: Implement } } }