Changeset 19

Show
Ignore:
Timestamp:
03/31/08 17:29:27 (8 months ago)
Author:
relet.net
Message:

renaming some uppercase acronym classnames to camelcase for consistency

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/net/relet/freimap/Converter.java

    r1 r19  
    33public final class Converter { 
    44 
    5         OSMMercatorProjection projection; 
     5        OsmMercatorProjection projection; 
    66 
    77        public int offsetX, offsetY; 
    88 
    9         public void setProjection(OSMMercatorProjection p) { 
     9        public void setProjection(OsmMercatorProjection p) { 
    1010                projection = p; 
    1111        } 
     
    6767        void initZoom(int zoom, int viewX, int viewY) { 
    6868                if (projection == null) 
    69                         projection = new OSMMercatorProjection(0); 
     69                        projection = new OsmMercatorProjection(0); 
    7070 
    7171                // We want to zoom in on the center of our current screen. 
     
    7777                double lat = projection.yToLat(offsetY + viewY); 
    7878 
    79                 projection = new OSMMercatorProjection(zoom); 
     79                projection = new OsmMercatorProjection(zoom); 
    8080 
    8181                // Geo coordinates -> new view offset