Skip to content

Commit

Permalink
Update pixels.js
Browse files Browse the repository at this point in the history
Change language around gaussian blur
  • Loading branch information
aferriss authored Aug 31, 2023
1 parent 1bfe9c7 commit 121137f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/image/pixels.js
Original file line number Diff line number Diff line change
Expand Up @@ -329,9 +329,11 @@ p5.prototype._copyHelper = (
* results are most noticeable in the lower ranges. The default parameter is 4.
*
* `BLUR`
* Executes a Gaussian blur with the level parameter specifying the extent
* Executes a blur with the level parameter specifying the extent
* of the blurring. If no parameter is used, the blur is equivalent to
* Gaussian blur of radius 4. Larger values increase the blur.
* a blur of radius 4. Larger values increase the blur. In P2D mode a
* gaussian blur is performed on the CPU. When in webGL mode, a box blur is
* used instead.
*
* `ERODE`
* Reduces the light areas. No parameter is used.
Expand Down

0 comments on commit 121137f

Please sign in to comment.