Changeset f70c2a for molecuilder/src/Space.hpp
- Timestamp:
- Apr 30, 2010, 9:53:16 AM (15 years ago)
- Children:
- 4eee8f
- Parents:
- cb2b9a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/Space.hpp
rcb2b9a rf70c2a 17 17 virtual ~Space(); 18 18 19 virtual double distance(Vector &point)=0; 20 virtual Vector getClosestPoint(Vector &point)=0; 21 virtual bool isContained(Vector &point)=0; 19 virtual double distance(const Vector &point) const=0; 20 virtual Vector getClosestPoint(const Vector &point) const=0; 21 virtual bool isContained(const Vector &point) const; 22 virtual bool hasZero() const; 23 22 24 }; 23 25
Note:
See TracChangeset
for help on using the changeset viewer.