Skip to content

Commit d6899de

Browse files
author
Lauren McCarthy
committed
ref
1 parent c93d233 commit d6899de

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/3d/loading.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ require('./p5.Geometry');
2626
* function setup(){
2727
* createCanvas(100, 100, WEBGL);
2828
*
29-
* teapot = loadModel('teapot.obj');
29+
* teapot = loadModel('assets/teapot.obj');
3030
* }
3131
*
3232
* function draw(){
@@ -162,7 +162,7 @@ function parseObj( model, lines ) {
162162
* function setup(){
163163
* createCanvas(100, 100, WEBGL);
164164
*
165-
* teapot = loadModel('teapot.obj');
165+
* teapot = loadModel('assets/teapot.obj');
166166
* }
167167
*
168168
* function draw(){

src/core/2d_primitives.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -141,12 +141,12 @@ p5.prototype.arc = function(x, y, w, h, start, stop, mode) {
141141
*/
142142
/**
143143
* @method ellipse
144-
* @param {Number} x x-coordinate of the ellipse.
145-
* @param {Number} y y-coordinate of the ellipse.
146-
* @param {Number} z z-coordinate of the ellipse.
147-
* @param {Number} w width of the ellipse.
148-
* @param {Number} h height of the ellipse.
149-
* @return {p5} the p5 object
144+
* @param {Number} x
145+
* @param {Number} y
146+
* @param {Number} z z-coordinate of the ellipse
147+
* @param {Number} w
148+
* @param {Number} h
149+
* @return {p5}
150150
*/
151151
p5.prototype.ellipse = function() {
152152
var args = new Array(arguments.length);

0 commit comments

Comments
 (0)