10 lines
296 B
10 lines
296 B
#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];
|
|
}
|
|
}
|
|
|