Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gkjohnson authored Sep 18, 2023
1 parent f71b7be commit 5c8a144
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ Generate the edge geometry using a generator function.
### .generateAsync

```js
async generateAsync(
generateAsync(
geometry : MeshBVH | BufferGeometry,
options : {
onProgress: ( percent : Number ) => void,
signal: AbortSignal,
}
) : BufferGeometry
) : Promise<BufferGeometry>
```

Generate the geometry with a promise-style API.
Expand Down Expand Up @@ -148,13 +148,13 @@ Generate the geometry using a generator function.
### .generateAsync

```js
async generateAsync(
generateAsync(
geometry : BufferGeometry,
options : {
onProgress: ( percent : Number ) => void,
signal: AbortSignal,
}
) : BufferGeometry
) : Promise<BufferGeometry>
```

Generate the silhouette geometry with a promise-style API.
Expand Down

0 comments on commit 5c8a144

Please sign in to comment.