comparison icanvas.d @ 3:7d57cae10805

Renamed geometry2 to geometry
author David Bryant <daveb@acres.com.au>
date Fri, 10 Jul 2009 15:25:48 +0930
parents d6f44347373d
children 8a39b13cd3e6
comparison
equal deleted inserted replaced
2:d6f44347373d 3:7d57cae10805
1 module icanvas; 1 module icanvas;
2 2
3 import tk.geometry2; 3 import tk.geometry;
4 4
5 interface ICanvas { 5 interface ICanvas {
6 void rel_zoom(Point2 screen_datum, double factor); 6 void rel_zoom(Point screen_datum, double factor);
7 void rel_pan(Vector2 screen_displacement); 7 void rel_pan(Vector screen_displacement);
8 //void damage(); 8 //void damage();
9 } 9 }
10 10
11 import tk.events; 11 import tk.events;
12 12