diff --git a/src/Perspex.SceneGraph/Media/StreamGeometryContext.cs b/src/Perspex.SceneGraph/Media/StreamGeometryContext.cs
index 1a82149735..0d0c345389 100644
--- a/src/Perspex.SceneGraph/Media/StreamGeometryContext.cs
+++ b/src/Perspex.SceneGraph/Media/StreamGeometryContext.cs
@@ -64,6 +64,16 @@ namespace Perspex.Media
_impl.BezierTo(point1, point2, point3);
}
+ ///
+ /// Draws a quadratic Bezier curve to the specified point
+ ///
+ /// The control point used to specify the shape of the curve.
+ /// The destination point for the end of the curve.
+ public void QuadTo(Point control, Point endPoint)
+ {
+ _impl.QuadTo(control, endPoint);
+ }
+
///
/// Draws a line to the specified point.
///