You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Append a cubic Bézier curve to the current path. The curve shall extend from the current point to the point (<paramref name="finalX"/>, <paramref name="finalY"/>),
@@ -43,8 +46,8 @@ public interface IShapeContext : IContentContext<IShapeContext>
43
46
/// <param name="cpY2">The Y coordinate of the second control point</param>
44
47
/// <param name="finalX">The X coordinate of the endpoint of the curve</param>
45
48
/// <param name="finalY">The Y coordinate of the endpoint of the curve</param>
46
-
/// <returns>The calling <see cref="IShapeContext"/> to support chaining operations.</returns>
/// Append a cubic Bézier curve to the current path. The curve shall extend from the current point to the point (<paramref name="finalX"/>, <paramref name="finalY"/>),
@@ -55,8 +58,8 @@ public interface IShapeContext : IContentContext<IShapeContext>
55
58
/// <param name="cpY2">The Y coordinate of the second control point</param>
56
59
/// <param name="finalX">The X coordinate of the endpoint of the curve</param>
57
60
/// <param name="finalY">The Y coordinate of the endpoint of the curve</param>
58
-
/// <returns>The calling <see cref="IShapeContext"/> to support chaining operations.</returns>
/// Append a cubic Bézier curve to the current path. The curve shall extend from the current point to the point (<paramref name="finalX"/>, <paramref name="finalY"/>),
@@ -67,39 +70,59 @@ public interface IShapeContext : IContentContext<IShapeContext>
67
70
/// <param name="cpY1">The Y coordinate of the first control point</param>
68
71
/// <param name="finalX">The X coordinate of the endpoint of the curve</param>
69
72
/// <param name="finalY">The Y coordinate of the endpoint of the curve</param>
70
-
/// <returns>The calling <see cref="IShapeContext"/> to support chaining operations.</returns>
/// End the path object without filling or stroking it. This operator is a path-painting no-op, used primarily for the side effect of changing the current clipping path.
102
125
/// </summary>
103
-
/// <returns>The calling <see cref="IShapeContext"/> to support chaining operations.</returns>
104
-
IShapeContextEndPathNoStrokeNoFill();
126
+
/// <returns>The calling <see cref="IShapeContentContext"/> to support chaining operations.</returns>
0 commit comments