1
0
Fork 0

fix(docs): Trim trailing whitespace and blank lines

This commit is contained in:
Benjamin F 2022-12-30 07:47:29 -08:00
parent de00e16f76
commit d1dc9feb66
54 changed files with 93 additions and 142 deletions

View file

@ -22,24 +22,24 @@ Path path.offset(float distance)
points.BCp2 = new Point(40, 20)
points.C = new Point(90, 30)
points.CCp1 = new Point(50, -30)
paths.example = new Path()
.move(points.A)
.line(points.B)
.curve(points.BCp2, points.CCp1, points.C)
.line(points.A)
.close()
paths.offset = paths.example
.offset(-10)
.attr("class", "interfacing")
paths.lineOffset = new Path()
.move(points.A)
.line(points.B)
.offset(-5)
.attr("class", "various")
paths.curveOffset = new Path()
.move(points.B)
.curve(points.BCp2, points.CCp1, points.C)
@ -50,4 +50,3 @@ Path path.offset(float distance)
}
```
</Example>