Revert "chore: Linting for markdown and js"
This reverts commit 1c92e0f655
.
This commit is contained in:
parent
994874fa72
commit
cba1ab19c8
6627 changed files with 25791 additions and 24211 deletions
|
@ -1,23 +1,24 @@
|
|||
***
|
||||
|
||||
## title: move()
|
||||
---
|
||||
title: move()
|
||||
---
|
||||
|
||||
```js
|
||||
Path path.move(Point to)
|
||||
```
|
||||
|
||||
Moves to a given point without drawing a line.
|
||||
Moves to a given point without drawing a line.
|
||||
|
||||
|
||||
<Tip>
|
||||
|
||||
###### Always start your path with a move
|
||||
|
||||
When drawing a path, you must always start with a `move()` call,
|
||||
When drawing a path, you must always start with a `move()` call,
|
||||
followed by your `line()` and/or `curve()` calls
|
||||
and an optional `close()` call.
|
||||
|
||||
These calls are chainable, making your code easier to read:
|
||||
|
||||
|
||||
```js
|
||||
paths.example = new Path()
|
||||
.move(points.a)
|
||||
|
@ -28,6 +29,7 @@ paths.example = new Path()
|
|||
|
||||
</Tip>
|
||||
|
||||
|
||||
<Example part="path_move" caption="Example of the Path.move() method" />
|
||||
|
||||
```js
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue