csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
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.
49 lines
1.2 KiB
49 lines
1.2 KiB
// -----------------------------------------------------------------------
|
|
// <copyright file="StreamGeometryContextImpl.cs" company="Steven Kirk">
|
|
// Copyright 2013 MIT Licence. See licence.md for more information.
|
|
// </copyright>
|
|
// -----------------------------------------------------------------------
|
|
|
|
namespace Perspex.Cairo.Media
|
|
{
|
|
using Perspex.Media;
|
|
using Perspex.Platform;
|
|
|
|
public class StreamGeometryContextImpl : IStreamGeometryContextImpl
|
|
{
|
|
public StreamGeometryContextImpl()
|
|
{
|
|
// TODO: Implement
|
|
}
|
|
|
|
public void ArcTo(Point point, Size size, double rotationAngle, bool isLargeArc, SweepDirection sweepDirection)
|
|
{
|
|
// TODO: Implement
|
|
}
|
|
|
|
public void BeginFigure(Point startPoint, bool isFilled)
|
|
{
|
|
// TODO: Implement
|
|
}
|
|
|
|
public void BezierTo(Point point1, Point point2, Point point3)
|
|
{
|
|
// TODO: Implement
|
|
}
|
|
|
|
public void LineTo(Point point)
|
|
{
|
|
// TODO: Implement
|
|
}
|
|
|
|
public void EndFigure(bool isClosed)
|
|
{
|
|
// TODO: Implement
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
// TODO: Implement
|
|
}
|
|
}
|
|
}
|
|
|