Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libUIComponent / src / org / gvsig / gui / beans / imagenavigator / IClientImageNavigator.java @ 11492

History | View | Annotate | Download (454 Bytes)

1 11492 bsanchez
package org.gvsig.gui.beans.imagenavigator;
2
3
import java.awt.Graphics2D;
4
5
public interface IClientImageNavigator {
6
7
        /**
8
         *
9
         * @param g Graphics del buffer a usar
10
         * @param x Coordenada real
11
         * @param y Coordenada real
12
         * @param zoom
13
         * @param width Ancho del widget en pixels
14
         * @param height Alto del widget en pixels
15
         */
16
        public void drawImage(Graphics2D g, double x1, double y1, double x2, double y2, double zoom, int width, int height);
17
}