From 18609d375e7aab9cb48c9b3f5b291f85cbd28683 Mon Sep 17 00:00:00 2001 From: John Mayhew Date: Tue, 3 Apr 2012 13:39:32 -0700 Subject: removed old unused import and export functions. --- js/lib/geom/brush-stroke.js | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'js/lib/geom/brush-stroke.js') diff --git a/js/lib/geom/brush-stroke.js b/js/lib/geom/brush-stroke.js index 22209815..26ac42e9 100755 --- a/js/lib/geom/brush-stroke.js +++ b/js/lib/geom/brush-stroke.js @@ -711,18 +711,6 @@ var BrushStroke = function GLBrushStroke() { this.update(); //after this, the stroke is ready to be rendered }; - - this.export = function() { - var jsonObject = this.exportJSON(); - var stringified = JSON.stringify(jsonObject); - return "type: " + this.geomType() + "\n" + stringified; - }; - - this.import = function( importStr ) { - var jsonObject = JSON.parse(importStr); - this.importJSON(jsonObject); - } - this.collidesWithPoint = function (x, y, z) { if (x < this._BBoxMin[0]) return false; if (x > this._BBoxMax[0]) return false; -- cgit v1.2.3