Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / core / AbstractGeometry.java @ 38563

History | View | Annotate | Download (434 Bytes)

1
package com.iver.cit.gvsig.fmap.core;
2

    
3
import java.awt.Graphics2D;
4

    
5
import com.iver.cit.gvsig.fmap.ViewPort;
6
import com.iver.cit.gvsig.fmap.core.symbols.ISymbol;
7

    
8
public abstract class AbstractGeometry implements IGeometry {
9

    
10
        public void drawInts(Graphics2D g, ViewPort vp, ISymbol symbol) {
11
                drawInts(g, vp, symbol, null);
12
        }
13
        
14
        
15
        public void draw(Graphics2D g, ViewPort vp, ISymbol symbol) {
16
                drawInts(g, vp, symbol, null);
17
        }
18
}