summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2011-05-13 17:39:57 -0500
committerBryan Bishop <kanzure@gmail.com>2011-05-13 17:39:57 -0500
commitc6fd9e5d244ad676cf3aa3bf1f51e1c0aa57ff89 (patch)
treedde2fdc004c40772e7c39a540e4b2cfc38dfc570
parent9f3bf195e4608b78cb753dc0f46ea7067656a163 (diff)
downloadlolcad-c6fd9e5d244ad676cf3aa3bf1f51e1c0aa57ff89.tar.gz
lolcad-c6fd9e5d244ad676cf3aa3bf1f51e1c0aa57ff89.zip
replaced method stubs with NotImplementedError
-rw-r--r--esolid/esolid.py39
1 files changed, 26 insertions, 13 deletions
diff --git a/esolid/esolid.py b/esolid/esolid.py
index 97c73f4..f5e5c58 100644
--- a/esolid/esolid.py
+++ b/esolid/esolid.py
@@ -2705,28 +2705,41 @@ class Patch:
def __repr__(self):
return "Patch(trim_curves=" + str(len(self.trim_curves)) + ", adj_surfs=" + str(len(self.adj_surfs)) + ", adj_patches=" + str(len(self.adj_patches)) + ")"
- def set_range(self): pass
+ def set_range(self):
+ raise NotImplementedError, bryan_message
- def get_high_s(self): pass
- def get_low_s(self): pass
- def get_high_t(self): pass
- def get_low_t(self): pass
+ def get_high_s(self):
+ raise NotImplementedError, bryan_message
+ def get_low_s(self):
+ raise NotImplementedError, bryan_message
+ def get_high_t(self):
+ raise NotImplementedError, bryan_message
+ def get_low_t(self):
+ raise NotImplementedError, bryan_message
- def in_dom(self, point2d): pass
+ def in_dom(self, point2d):
+ raise NotImplementedError, bryan_message
- def contains(self, point2d): pass
+ def contains(self, point2d):
+ raise NotImplementedError, bryan_message
- def in_on_out(self, point2d): pass
+ def in_on_out(self, point2d):
+ raise NotImplementedError, bryan_message
- def intersect(self, patch): pass
+ def intersect(self, patch):
+ raise NotImplementedError, bryan_message
- def split_trim_curves(self, t, s): pass
+ def split_trim_curves(self, t, s):
+ raise NotImplementedError, bryan_message
- def merge_curves(self): pass
+ def merge_curves(self):
+ raise NotImplementedError, bryan_message
- def split_loops(self, new_patches): pass
+ def split_loops(self, new_patches):
+ raise NotImplementedError, bryan_message
- def get_point_in(self): pass
+ def get_point_in(self):
+ raise NotImplementedError, bryan_message
def overlap(self, other):
t_box = self.surf.get_range(self.low_s, self.high_s, self.low_t, self.high_t)