From e529c69ca0e04edc009503e6a77748d96756ee7d Mon Sep 17 00:00:00 2001 From: Val Erastov Date: Sun, 30 Aug 2015 12:13:26 -0700 Subject: [PATCH] remove pkey method --- web/app/workbench.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/web/app/workbench.js b/web/app/workbench.js index f43c4dc3..1457fb1a 100644 --- a/web/app/workbench.js +++ b/web/app/workbench.js @@ -163,10 +163,6 @@ TCAD.craft.extrude = function(app, face, faces, height) { return TCAD.craft.reconstruct(meld); }; -TCAD.craft.pkey = function(point) { - return point.x + ":" + point.y + ":" + point.z; -} - TCAD.craft._pointOnLine = function(p, a, b) { var ab = a.minus(b);