"cannot_wait_for_CGAL-3.2" to the trunk.
My idea: the branch is the real working version, and I want it to be joined
back to the trunk:
__________________________ cannot_wait_for_CGAL-3.2 branch
/ \
/ \
-------------------------------------------- trunk
S M
The modification of the trunk between the splitting point S and the merging
point M has already been merged into "cannot_wait_for_CGAL-3.2".
The trunk versions of these three packages have been removed already.
14 lines
464 B
C++
14 lines
464 B
C++
#include <vector>
|
|
#include "Distribution_displayer.h"
|
|
|
|
typedef std::vector<double> Qualities;
|
|
typedef std::vector<int> Distribution;
|
|
|
|
void compute_distribution(const Qualities& qualities,
|
|
const double max_quality,
|
|
Distribution& distribution);
|
|
|
|
void display_distribution(Distribution_displayer* display,
|
|
const Distribution& distribution,
|
|
const double echelle);
|