Skip to content

Commit 04404a1

Browse files
author
Lauren McCarthy
committed
vertex cleanup
1 parent dc33888 commit 04404a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/vertex.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ p5.prototype.quadraticVertex = function(cx, cy, x3, y3) {
604604
*/
605605
p5.prototype.vertex = function(x, y, moveTo) {
606606
if(this._renderer.isP3D){
607-
this._renderer.vertex.call(arguments);
607+
this._renderer.vertex(x, y, moveTo);
608608
}else{
609609
var vert = [];
610610
vert.isVert = true;

0 commit comments

Comments
 (0)