Changeset 0e9394 for molecuilder/src/Plane.hpp
- Timestamp:
- Apr 30, 2010, 9:03:57 AM (16 years ago)
- Children:
- 7a8319
- Parents:
- c53e0b
- git-author:
- Tillmann Crueger <crueger@…> (04/30/10 08:26:28)
- git-committer:
- Tillmann Crueger <crueger@…> (04/30/10 09:03:57)
- File:
-
- 1 edited
-
molecuilder/src/Plane.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/Plane.hpp
rc53e0b r0e9394 11 11 #include <memory> 12 12 #include <vector> 13 #include "Space.hpp" 13 14 14 15 class Vector; 15 16 16 class Plane 17 class Plane : public Space 17 18 { 18 19 typedef std::auto_ptr<Vector> vec_ptr; … … 47 48 Vector GetIntersection(const Vector &Origin, const Vector &LineVector); 48 49 50 /****** Methods inherited from Space ***********/ 51 52 virtual double distance(Vector &point); 53 virtual Vector getClosestPoint(Vector &point); 54 virtual bool isContained(Vector &point); 55 56 49 57 private: 50 58 vec_ptr normalVector;
Note:
See TracChangeset
for help on using the changeset viewer.
