Skip to content

Commit daf9642

Browse files
authored
Fixed indentation error
1 parent fcae974 commit daf9642

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/webgl/p5.Camera.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2450,9 +2450,9 @@ p5.Camera = class Camera {
24502450

24512451
// Compute new up vector to prevent flipping
24522452
let forward = createVector(
2453-
rotatedCenter[0] - this.eyeX,
2454-
rotatedCenter[1] - this.eyeY,
2455-
rotatedCenter[2] - this.eyeZ
2453+
rotatedCenter[0] - this.eyeX,
2454+
rotatedCenter[1] - this.eyeY,
2455+
rotatedCenter[2] - this.eyeZ
24562456
).normalize();
24572457

24582458
let up = createVector(this.upX, this.upY, this.upZ);

0 commit comments

Comments
 (0)