remove unneeded record update
This commit is contained in:
parent
ff0e5fe75c
commit
fb61919c96
@ -61,7 +61,7 @@ reflect c = Coord -c.x -c.y
|
|||||||
|
|
||||||
-- translate : a -> a -> a
|
-- translate : a -> a -> a
|
||||||
translate base offset =
|
translate base offset =
|
||||||
{ base | x = (base.x + offset.x), y = (base.y + offset.y) }
|
{ x = (base.x + offset.x), y = (base.y + offset.y) }
|
||||||
|
|
||||||
translatePixels : Coord -> ZoomLevel -> (Int, Int) -> Coord
|
translatePixels : Coord -> ZoomLevel -> (Int, Int) -> Coord
|
||||||
translatePixels old z (x, y) = translate old (pixelsToCoord z (x, y))
|
translatePixels old z (x, y) = translate old (pixelsToCoord z (x, y))
|
||||||
|
Loading…
Reference in New Issue
Block a user