ソースを参照

Path: Add constructor to definition

Mugen87 7 年 前
コミット
5788c51b58
1 ファイル変更2 行追加0 行削除
  1. 2 0
      src/extras/core/Path.js

+ 2 - 0
src/extras/core/Path.js

@@ -29,6 +29,8 @@ function Path( points ) {
 
 Path.prototype = Object.assign( Object.create( CurvePath.prototype ), {
 
+	constructor: Path,
+
 	setFromPoints: function ( points ) {
 
 		this.moveTo( points[ 0 ].x, points[ 0 ].y );