Skip to content

Commit d3febae

Browse files
authored
Merge pull request #5275 from JetStarBlues/fixFrustumExamples
2 parents e7f2c14 + d6b0ef0 commit d3febae

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/webgl/p5.Camera.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -262,9 +262,7 @@ p5.prototype.ortho = function(...args) {
262262
* function draw() {
263263
* background(200);
264264
* orbitControl();
265-
* strokeWeight(10);
266-
* stroke(0, 0, 255);
267-
* noFill();
265+
* normalMaterial();
268266
*
269267
* rotateY(-0.2);
270268
* rotateX(-0.3);
@@ -900,9 +898,7 @@ p5.Camera.prototype.ortho = function(left, right, bottom, top, near, far) {
900898
* function draw() {
901899
* background(200);
902900
* orbitControl();
903-
* strokeWeight(10);
904-
* stroke(0, 0, 255);
905-
* noFill();
901+
* normalMaterial();
906902
*
907903
* rotateY(-0.2);
908904
* rotateX(-0.3);

0 commit comments

Comments
 (0)