Skip to content

Commit

Permalink
adding to @lad475 changes to place documentation in correct place for…
Browse files Browse the repository at this point in the history
… quad
  • Loading branch information
Lauren McCarthy committed Jun 15, 2018
1 parent 755019c commit 0baa6e4
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/core/2d_primitives.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,10 +305,6 @@ p5.prototype.point = function() {
* @param {Number} y3 the y-coordinate of the third point
* @param {Number} x4 the x-coordinate of the fourth point
* @param {Number} y4 the y-coordinate of the fourth point
* @param {Number} z1 the z-coordinate of the first point
* @param {Number} z2 the z-coordinate of the second point
* @param {Number} z3 the z-coordinate of the third point
* @param {Number} z4 the z-coordinate of the fourth point
* @chainable
* @example
* <div>
Expand All @@ -325,16 +321,16 @@ p5.prototype.point = function() {
* @method quad
* @param {Number} x1
* @param {Number} y1
* @param {Number} z1
* @param {Number} z1 the z-coordinate of the first point
* @param {Number} x2
* @param {Number} y2
* @param {Number} z2
* @param {Number} z2 the z-coordinate of the second point
* @param {Number} x3
* @param {Number} y3
* @param {Number} z3
* @param {Number} z3 the z-coordinate of the third point
* @param {Number} x4
* @param {Number} y4
* @param {Number} z4
* @param {Number} z4 the z-coordinate of the fourth point
* @chainable
*/
p5.prototype.quad = function() {
Expand Down

0 comments on commit 0baa6e4

Please sign in to comment.