Last change
on this file since aab470 was 71910a, checked in by Tillmann Crueger <crueger@…>, 15 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:
431 bytes
|
Line | |
---|
1 | /*
|
---|
2 | * vector_ops.hpp
|
---|
3 | *
|
---|
4 | * Created on: Apr 1, 2010
|
---|
5 | * Author: crueger
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef VECTOR_OPS_HPP_
|
---|
9 | #define VECTOR_OPS_HPP_
|
---|
10 |
|
---|
11 | bool LSQdistance(Vector &res,const Vector **vectors, int num);
|
---|
12 | Vector RotateVector(const Vector &vec,const Vector &axis, const double alpha);
|
---|
13 | Vector GetIntersectionOfTwoLinesOnPlane(const Vector &Line1a, const Vector &Line1b, const Vector &Line2a, const Vector &Line2b);
|
---|
14 |
|
---|
15 | #endif /* VECTOR_OPS_HPP_ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.