Merge pull request #2021 from domesticmouse/patch-1

Path is defined as a class, thus extending not implementing Path.
This commit is contained in:
Basarat Ali Syed
2014-04-12 02:06:12 +10:00
+1 -1
View File
@@ -4968,7 +4968,7 @@ declare module THREE {
/**
* Defines a 2d shape plane using paths.
*/
export class Shape implements Path {
export class Shape extends Path {
constructor(points?: Vector2[]);
holes: Path[];