Exemplo n.º 1
0
QgsPoint QgsMapToPixel::toMapCoordinatesF( double x, double y ) const
{
  return toMapPoint( x, y );
}
Exemplo n.º 2
0
QgsPoint QgsMapToPixel::toMapCoordinates( int x, int y ) const
{
  return toMapPoint( x, y );
}
Exemplo n.º 3
0
GRPoint GRCoordinateTransform::toMapCoordinates( int x, int y )
{
    return toMapPoint( x, y );
}
Exemplo n.º 4
0
QgsPoint QgsMapToPixel::toMapCoordinates( QPoint p ) const
{
  QgsPoint mapPt = toMapPoint( p.x(), p.y() );
  return QgsPoint( mapPt );
}
Exemplo n.º 5
0
GRPoint GRCoordinateTransform::toMapCoordinates( QPoint p )
{
    GRPoint mapPt = toMapPoint( p.x(), p.y() );
    return GRPoint( mapPt );
}