11 changed files with 150 additions and 19 deletions
@ -0,0 +1,38 @@ |
|||
// -----------------------------------------------------------------------
|
|||
// <copyright file="Direct2D1StreamGeometryContext.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
|
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,38 @@ |
|||
// -----------------------------------------------------------------------
|
|||
// <copyright file="Direct2DStreamGeometry.cs" company="Steven Kirk">
|
|||
// Copyright 2014 MIT Licence. See licence.md for more information.
|
|||
// </copyright>
|
|||
// -----------------------------------------------------------------------
|
|||
|
|||
namespace Perspex.Cairo.Media |
|||
{ |
|||
using System; |
|||
using Perspex.Media; |
|||
using Perspex.Platform; |
|||
using Splat; |
|||
|
|||
public class StreamGeometryImpl : IStreamGeometryImpl |
|||
{ |
|||
public StreamGeometryImpl() |
|||
{ |
|||
// TODO: Implement
|
|||
} |
|||
|
|||
public Rect Bounds |
|||
{ |
|||
get { return new Rect(); } |
|||
} |
|||
|
|||
public Rect GetRenderBounds(double strokeThickness) |
|||
{ |
|||
// TODO: Implement
|
|||
return new Rect(); |
|||
} |
|||
|
|||
public IStreamGeometryContextImpl Open() |
|||
{ |
|||
// TODO: Implement
|
|||
return new StreamGeometryContextImpl(); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue