A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

38 lines
940 B

// -----------------------------------------------------------------------
// <copyright file="StreamGeometryContextImpl.cs" company="Steven Kirk">
// Copyright 2013 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
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
}
}
}