Home
last modified time | relevance | path

Searched refs:copyXY (Results 1 – 4 of 4) sorted by relevance

/dports/games/megaglest/megaglest-source-3.13.0/source/glest_map_editor/
H A Dprogram.cpp290 map->copyXY(w-i-1,j , i,j); in mirrorX()
314 map->copyXY(i,h-j-1 , i,j); in mirrorY()
339 map->copyXY(j,i , i,j); in mirrorXY()
381 map->copyXY(w-i-1,h-j-1 , i,j); in rotatecopyX()
405 map->copyXY(w-i-1,h-j-1 , i,j); in rotatecopyY()
432 map->copyXY(i,j , w-i-1,h-j-1); in rotatecopyXY()
463 map->copyXY(w-j-1,i , i,j); in rotatecopyCorner()
506 map->copyXY(i,j , i+1,j); in shiftLeft()
533 map->copyXY(i,j , i-1,j); in shiftRight()
545 map->copyXY(i,j , i,j+1); in shiftUp()
[all …]
/dports/math/kmplot/kmplot-21.12.3/kmplot/
H A Dmaindlg.cpp378 QAction * copyXY = actionCollection()->addAction( "copyXY" ); in setupActions() local
379 copyXY->setText(i18n("Copy (x, y)")); in setupActions()
380 connect( copyXY, &QAction::triggered, []{ in setupActions()
385 m_popupmenu->addAction( copyXY ); in setupActions()
/dports/games/megaglest/megaglest-source-3.13.0/source/shared_lib/include/map/
H A Dmap_preview.h205 void copyXY(int x, int y, int sx, int sy); // destination x,y = source sx,sy
/dports/games/megaglest/megaglest-source-3.13.0/source/shared_lib/sources/map/
H A Dmap_preview.cpp411 void MapPreview::copyXY(int x, int y, int sx, int sy) { in copyXY() function in Shared::Map::MapPreview