Changeset aab470 for molecuilder/src/Plane.hpp
- Timestamp:
- Apr 30, 2010, 9:32:59 AM (16 years ago)
- Children:
- cb2b9a
- Parents:
- 7a8319
- File:
-
- 1 edited
-
molecuilder/src/Plane.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/Plane.hpp
r7a8319 raab470 12 12 #include <vector> 13 13 #include "Space.hpp" 14 #include "Exceptions/LinearDependenceException.hpp" 15 #include "Exceptions/ZeroVectorException.hpp" 14 16 15 17 class Vector; … … 19 21 typedef std::auto_ptr<Vector> vec_ptr; 20 22 public: 21 Plane(const Vector &y1, const Vector &y2, const Vector &y3) ;22 Plane(const Vector &y1, const Vector &y2, double _offset) ;23 Plane(const Vector &_normalVector, double _offset=0) ;24 Plane(const Vector &_normalVector, const Vector &_offsetVector) ;23 Plane(const Vector &y1, const Vector &y2, const Vector &y3) throw(LinearDependenceException); 24 Plane(const Vector &y1, const Vector &y2, double _offset) throw(LinearDependenceException); 25 Plane(const Vector &_normalVector, double _offset=0) throw(ZeroVectorException); 26 Plane(const Vector &_normalVector, const Vector &_offsetVector) throw(ZeroVectorException); 25 27 virtual ~Plane(); 26 28
Note:
See TracChangeset
for help on using the changeset viewer.
