My old project for strange attractors
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

11 lines
296 B

13 years ago
#include "Projection.hpp"
13 years ago
Projection::Projection(unsigned int inputDimension, unsigned int outputDimension) : Projector(inputDimension, outputDimension) {
13 years ago
}
13 years ago
void Projection::project(const double* point) {
for(unsigned int i = 0; i < inputDimension; ++i) {
13 years ago
projectedPoint[i] = point[i];
}
}