18 lines
309 B
C++
18 lines
309 B
C++
#include "precompile.h"
|
|
|
|
#include "bornpoint.h"
|
|
|
|
Position BornPoint::RandPoint() const
|
|
{
|
|
Position pos;
|
|
#if 1
|
|
pos.x = 1061.000000000000;
|
|
pos.y = 11.050000190735;
|
|
pos.z = 1716.000000000000;
|
|
#else
|
|
pos.x = 1219.634277343750;
|
|
pos.z = 1549.267578125000;
|
|
#endif
|
|
return pos;
|
|
}
|