~ubuntu-branches/ubuntu/vivid/elki/vivid

« back to all changes in this revision

Viewing changes to src/de/lmu/ifi/dbs/elki/visualization/projector/ScatterPlotFactory.java

  • Committer: Bazaar Package Importer
  • Author(s): Erich Schubert
  • Date: 2011-09-24 12:24:37 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110924122437-xx6pyl4yhuom9yzw
Tags: 0.4.0-1
* New upstream release. (0.4.0 final)
* Try to make lintian happier with the DEP-5 copyright format
* Fixes a bug where various methods would require a classlabel that
  previously would fall-back to any kind of label available.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
 * Produce scatterplot projections.
42
42
 * 
43
43
 * @author Erich Schubert
 
44
 * 
 
45
 * @apiviz.has ScatterPlotProjector
44
46
 */
45
 
// TODO: re-add maxdim option
46
47
public class ScatterPlotFactory implements ProjectorFactory {
47
48
  /**
48
49
   * Maximum number of dimensions to visualize.
114
115
    }
115
116
 
116
117
    @Override
117
 
    protected Object makeInstance() {
 
118
    protected ScatterPlotFactory makeInstance() {
118
119
      return new ScatterPlotFactory(maxdim);
119
120
    }
120
121
  }