Changeset 7a8319
- Timestamp:
- Apr 30, 2010, 9:23:37 AM (16 years ago)
- Children:
- aab470
- Parents:
- 0e9394
- Location:
- molecuilder/src
- Files:
-
- 4 added
- 4 edited
-
Exceptions/LinearDependenceException.cpp (modified) (1 diff)
-
Exceptions/LinearDependenceException.hpp (modified) (1 diff)
-
Exceptions/MathException.cpp (added)
-
Exceptions/MathException.hpp (added)
-
Exceptions/ZeroVectorException.cpp (added)
-
Exceptions/ZeroVectorException.hpp (added)
-
Makefile.am (modified) (1 diff)
-
Plane.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/Exceptions/LinearDependenceException.cpp
r0e9394 r7a8319 11 11 12 12 LinearDependenceException::LinearDependenceException(string _file, int _line) : 13 CustomException(_file,_line)13 MathException(_file,_line) 14 14 {} 15 15 -
molecuilder/src/Exceptions/LinearDependenceException.hpp
r0e9394 r7a8319 9 9 #define LINEARDEPENDENCEEXCEPTION_HPP_ 10 10 11 #include "Exceptions/ CustomException.hpp"11 #include "Exceptions/MathException.hpp" 12 12 13 class LinearDependenceException : public CustomException13 class LinearDependenceException : public MathException 14 14 { 15 15 public: -
molecuilder/src/Makefile.am
r0e9394 r7a8319 84 84 85 85 EXCEPTIONSOURCE = Exceptions/CustomException.cpp \ 86 Exceptions/LinearDependenceException.cpp 86 Exceptions/LinearDependenceException.cpp \ 87 Exceptions/MathException.cpp \ 88 Exceptions/ZeroVectorException.cpp 87 89 88 90 EXCEPTIONHEADER = Exceptions/CustomException.hpp \ 89 Exceptions/LinearDependenceException.hpp 91 Exceptions/LinearDependenceException.hpp \ 92 Exceptions/MathException.hpp \ 93 Exceptions/ZeroVectorException.hpp 90 94 91 95 SOURCE = ${ANALYSISSOURCE} \ -
molecuilder/src/Plane.cpp
r0e9394 r7a8319 81 81 normalVector(new Vector(_normalVector)) 82 82 { 83 normalVector->Normalize(); 83 84 offset = normalVector->ScalarProduct(_offsetVector); 84 85 }
Note:
See TracChangeset
for help on using the changeset viewer.
