Commit f4a16223 authored by Guillaume Seguin's avatar Guillaume Seguin

Remove orphaned code

parent b367fa2a
...@@ -18,16 +18,6 @@ import sys ...@@ -18,16 +18,6 @@ import sys
import re import re
import math import math
def deltalen(a,b):
d = object()
d.x = b.x - a.x
d.y = b.y - a.y
d.z = b.z - a.z
return math.sqrt((d.x*d.x)+(d.y*d.y)+(d.z*d.z))
class Line(object): class Line(object):
def __init__(self,l): def __init__(self,l):
self._x = None self._x = None
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment