diff --git a/css-shapes-2/Overview.bs b/css-shapes-2/Overview.bs index 842ee4299f4..03980b6356b 100644 --- a/css-shapes-2/Overview.bs +++ b/css-shapes-2/Overview.bs @@ -168,10 +168,10 @@ The ''shape()'' Function <> = move <> <> <> = line <> <> <> = [hline | vline] <> <> - <> = curve <> <> via <>{1,2} - <> = smooth <> <> [via <>]? - <> = arc <> <> of <>{1,2} - [ <> || <> || rotate <> ]? + <> = curve [<> <> using <>{1,2}] + <> = smooth [[<> <>] || [using <>]?] + <> = arc [[<> <>] || [of <>{1,2}] || + <>? || <>? || [rotate <>]?] <> = cw | ccw <> = large | small @@ -227,23 +227,23 @@ The ''shape()'' Function of the <>, and the other component specified appropriately to make the line horizontal or vertical. -
<> = curve <> <> via <>{1,2} +
<> = curve [[<> <>] || [using <>{1,2}]]
Adds a Bézier curve command to the list of path data commands, ending at the point specified by the first <>. - The via component specifies control points for the curve: + The using component specifies control points for the curve: if a single <> is provided, the command specifies a quadratic curve; if two <>s are provided, it specifies a cubic curve. -
<> = smooth <> <> [via <>]? +
<> = smooth [[<> <>] || [using <>]?]
Adds a smooth Bézier curve command to the list of path data commands, ending at the point specified by the first <>. - The via component specifies control points for the curve: + The using component specifies control points for the curve: if it's omitted, the command specifies a smooth quadratic curve; if it's provided, @@ -258,7 +258,7 @@ The ''shape()'' Function so the curve appears to smoothly continue from the previous command, rather than possibly making a sudden direction change. -
<> = arc <> <> of <>{1,2} [ <> || <> || rotate <> ] +
<> = arc [[<> <>] || [of <>{1,2}] || <>? || <>?|| rotate <>? ]
Add an elliptical arc command to the list of path data commands,