mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
18 lines
225 B
C++
18 lines
225 B
C++
/** @file
|
|
*
|
|
* @par History
|
|
*/
|
|
|
|
|
|
#include "zone.h"
|
|
|
|
namespace Pol
|
|
{
|
|
namespace Core
|
|
{
|
|
Pos2d XyToZone( const Pos2d& p )
|
|
{
|
|
return Pos2d( p.x() >> ZONE_SHIFT, p.y() >> ZONE_SHIFT );
|
|
}
|
|
} // namespace Core
|
|
} // namespace Pol
|