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.
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];
|
|
}
|
|
}
|
|
|