Revision 1148 org.gvsig.raster.tools/trunk/org.gvsig.raster.tools/org.gvsig.raster.tools.app/org.gvsig.raster.tools.app.basic/src/main/java/org/gvsig/raster/tools/app/basic/tool/infobypoint/gui/InfoByPointDataModel.java

View differences:

InfoByPointDataModel.java
33 33
	public Point2D             worldPoint              = new Point2D.Double();
34 34
	public Point2D             viewPoint               = new Point2D.Double();
35 35
	public int[]               argb                    = new int[4];
36
	public int[]               cmyk                    = new int[4];
36
	public double[]            cmyk                    = new double[4];
37 37
	public double[]            hsl                     = new double[3];
38 38
	public List<String>        layers                  = new ArrayList<String>();
39 39
	
......
62 62
		argb[3] = b;
63 63
	}
64 64
	
65
	public void setCMYK(int c, int m, int i, int k) {
66
		cmyk[0] = c;
67
		cmyk[1] = m;
68
		cmyk[2] = i;
69
		cmyk[3] = k;
65
	public void setCMYK(double[] cmyk) {
66
		this.cmyk = cmyk;
70 67
	}
71 68
	
72 69
	public void setHSL(double h, double s, double l) {

Also available in: Unified diff