Hopefully fixed difference in A* between windows.Linux.

This commit is contained in:
unknown
2012-11-02 11:36:28 +01:00
parent 38f34faaac
commit 1e81403e62
3 changed files with 48 additions and 27 deletions

View File

@ -174,7 +174,8 @@ namespace PolyVox
float SixConnectedCost(const Vector3DInt32& a, const Vector3DInt32& b);
float EighteenConnectedCost(const Vector3DInt32& a, const Vector3DInt32& b);
float TwentySixConnectedCost(const Vector3DInt32& a, const Vector3DInt32& b);
float computeH(const Vector3DInt32& a, const Vector3DInt32& b);
float computeH(const Vector3DInt32& a, const Vector3DInt32& b);
uint32_t hash(uint32_t a);
//Node containers
AllNodesContainer allNodes;