|
Last change
on this file since 71910a was 71910a, checked in by Tillmann Crueger <crueger@…>, 16 years ago |
|
Made data internal data-structure of vector class private
- Replaced occurences of access to internals with operator
- moved Vector-class into LinAlg-Module
- Reworked Vector to allow clean modularization
- Added Plane class to describe arbitrary planes in 3d space
|
-
Property mode
set to
100644
|
|
File size:
456 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * LinearDependenceException.cpp
|
|---|
| 3 | *
|
|---|
| 4 | * Created on: Apr 7, 2010
|
|---|
| 5 | * Author: crueger
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 | #include "LinearDependenceException.hpp"
|
|---|
| 9 |
|
|---|
| 10 | using namespace std;
|
|---|
| 11 |
|
|---|
| 12 | LinearDependenceException::LinearDependenceException(string _file, int _line) :
|
|---|
| 13 | CustomException(_file,_line)
|
|---|
| 14 | {}
|
|---|
| 15 |
|
|---|
| 16 | LinearDependenceException::~LinearDependenceException() throw ()
|
|---|
| 17 | {}
|
|---|
| 18 |
|
|---|
| 19 | const char* LinearDependenceException::what() const throw()
|
|---|
| 20 | {
|
|---|
| 21 | return "Given vectors are linear dependent.";
|
|---|
| 22 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.