Skip to content

Commit d46432d

Browse files
authoredJan 20, 2025
Merge pull request #7458 from ImRAJAS-SAMSE/fix-typo-shader-doc
Fixed typo in p5.Shader.js documentation comment
2 parents e987d6c + 6f467d7 commit d46432d

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed
 

‎src/webgl/p5.Shader.js

+8-12
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ import p5 from '../core/main';
4646
* ```glsl
4747
* void main() {
4848
* HOOK_beforeVertex();
49-
* // Add the rest ofy our shader code here!
49+
* // Add the rest of your shader code here!
5050
* }
5151
* ```
5252
*
@@ -333,10 +333,7 @@ p5.Shader = class {
333333
console.log('');
334334
console.log('==== Helper functions: ====');
335335
for (const key in this.hooks.helpers) {
336-
console.log(
337-
key +
338-
this.hooks.helpers[key]
339-
);
336+
console.log(key + this.hooks.helpers[key]);
340337
}
341338
}
342339

@@ -946,7 +943,7 @@ p5.Shader = class {
946943
const modelMatrix = this._renderer.uModelMatrix;
947944
const viewMatrix = this._renderer.uViewMatrix;
948945
const projectionMatrix = this._renderer.uPMatrix;
949-
const modelViewMatrix = (modelMatrix.copy()).mult(viewMatrix);
946+
const modelViewMatrix = modelMatrix.copy().mult(viewMatrix);
950947
this._renderer.uMVMatrix = modelViewMatrix;
951948

952949
const modelViewProjectionMatrix = modelViewMatrix.copy();
@@ -1334,15 +1331,14 @@ p5.Shader = class {
13341331
) {
13351332
console.log(
13361333
'🌸 p5.js says: ' +
1337-
'You\'re trying to use a number as the data for a texture.' +
1338-
'Please use a texture.'
1334+
"You're trying to use a number as the data for a texture." +
1335+
'Please use a texture.'
13391336
);
13401337
return this;
13411338
}
13421339
gl.activeTexture(data);
13431340
gl.uniform1i(location, data);
1344-
}
1345-
else {
1341+
} else {
13461342
gl.activeTexture(gl.TEXTURE0 + uniform.samplerIndex);
13471343
uniform.texture =
13481344
data instanceof p5.Texture ? data : this._renderer.getTexture(data);
@@ -1376,8 +1372,8 @@ p5.Shader = class {
13761372
) {
13771373
console.log(
13781374
'🌸 p5.js says: ' +
1379-
'You\'re trying to use a number as the data for a texture.' +
1380-
'Please use a texture.'
1375+
"You're trying to use a number as the data for a texture." +
1376+
'Please use a texture.'
13811377
);
13821378
break;
13831379
}

0 commit comments

Comments
 (0)