From 0d4517c77f8eea98ea7856421f62287e12696fc6 Mon Sep 17 00:00:00 2001 From: Jonathan Puckey Date: Tue, 12 Apr 2011 14:36:02 +0200 Subject: [PATCH] Path: add todos for missing functions. --- src/path/Path.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/path/Path.js b/src/path/Path.js index 29841426..9e1b64b6 100644 --- a/src/path/Path.js +++ b/src/path/Path.js @@ -948,5 +948,13 @@ var Path = this.Path = PathItem.extend({ getControlBounds: function() { // TODO: Implement! } + + // TODO: intersects(item) + // TODO: contains(item) + // TODO: contains(point) + // TODO: intersect(item) + // TODO: unite(item) + // TODO: exclude(item) + // TODO: getIntersections(path) }; });