Code cleanup / Cycles:

* Remove unused "PathThroughput" variable.
* Don't compile unused voronoi code, we only use Distance Squared atm. 
* Various typo and comment fixes.
This commit is contained in:
Thomas Dinges
2013-08-11 16:55:24 +00:00
parent 33686720f2
commit 9dfd2823c4
3 changed files with 13 additions and 7 deletions

View File

@@ -18,8 +18,11 @@
float voronoi_distance(string distance_metric, vector d, float e)
{
#if 0
if (distance_metric == "Distance Squared")
#endif
return dot(d, d);
#if 0
if (distance_metric == "Actual Distance")
return length(d);
if (distance_metric == "Manhattan")
@@ -34,6 +37,7 @@ float voronoi_distance(string distance_metric, vector d, float e)
return pow(pow(fabs(d[0]), e) + pow(fabs(d[1]), e) + pow(fabs(d[2]), e), 1.0 / e);
return 0.0;
#endif
}
/* Voronoi / Worley like */