19 lines
331 B
C++
19 lines
331 B
C++
#include "precompile.h"
|
|
|
|
#include "bornpoint.h"
|
|
|
|
#include "mt/Map.h"
|
|
|
|
Position BornPoint::RandPoint() const
|
|
{
|
|
Position pos;
|
|
if (wo_meta) {
|
|
pos.FromGlmVec3(wo_meta->pos);
|
|
} else {
|
|
pos.SetX(5120.000000000000);
|
|
pos.SetY(6.250846862793);
|
|
pos.SetZ(5120.000000000000);
|
|
}
|
|
return pos;
|
|
}
|