File tree 1 file changed +11
-2
lines changed
1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -159,6 +159,9 @@ class Camera {
159
159
* // Point the camera at the origin.
160
160
* cam.lookAt(0, 0, 0);
161
161
*
162
+ * // Set the camera.
163
+ * setCamera(cam);
164
+ *
162
165
* describe(
163
166
* 'A white cube on a gray background. The text "eyeY: -400" is written in black beneath it.'
164
167
* );
@@ -180,7 +183,7 @@ class Camera {
180
183
* fill(0);
181
184
*
182
185
* // Display the value of eyeY, rounded to the nearest integer.
183
- * text(`eyeX : ${round(cam.eyeY)}`, 0, 55);
186
+ * text(`eyeY : ${round(cam.eyeY)}`, 0, 55);
184
187
* }
185
188
* </code>
186
189
* </div>
@@ -2197,6 +2200,9 @@ class Camera {
2197
2200
* // Point it at the origin.
2198
2201
* cam.lookAt(0, 0, 0);
2199
2202
*
2203
+ * // Set the camera.
2204
+ * setCamera(cam);
2205
+ *
2200
2206
* describe(
2201
2207
* 'A white cube drawn against a gray background. The cube appears to move when the user presses certain keys.'
2202
2208
* );
@@ -2450,6 +2456,9 @@ class Camera {
2450
2456
* // Copy cam1's configuration.
2451
2457
* cam2.set(cam1);
2452
2458
*
2459
+ * // Set the camera.
2460
+ * setCamera(cam2);
2461
+ *
2453
2462
* describe(
2454
2463
* 'A white cube drawn against a gray background. The camera slowly moves forward. The camera resets when the user double-clicks.'
2455
2464
* );
@@ -3458,7 +3467,7 @@ function camera(p5, fn){
3458
3467
if ( ! ( this . _renderer instanceof RendererGL ) ) {
3459
3468
throw new Error ( 'linePerspective() must be called in WebGL mode.' ) ;
3460
3469
}
3461
- this . _renderer . linePerspective ( enable ) ;
3470
+ return this . _renderer . linePerspective ( enable ) ;
3462
3471
} ;
3463
3472
3464
3473
You can’t perform that action at this time.
0 commit comments