You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
295 B
11 lines
295 B
14 years ago
|
#include "Projection.hpp"
|
||
|
|
||
|
Projection::Projection(unsigned int inputDimension, unsigned int outputDimension) : Projector(inputDimension, outputDimension){
|
||
|
}
|
||
|
|
||
|
void Projection::project(const double* point){
|
||
|
for ( unsigned int i = 0; i < inputDimension; ++i){
|
||
|
projectedPoint[i] = point[i];
|
||
|
}
|
||
|
}
|