mirror of
https://github.com/projectM-visualizer/projectm.git
synced 2026-02-11 03:35:40 +00:00
git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@1229 6778bc44-b910-0410-a7a0-be141de4315d
14 lines
326 B
C++
14 lines
326 B
C++
/*
|
|
* RenderItemDistanceMetric.cpp
|
|
*
|
|
* Created on: Feb 18, 2009
|
|
* Author: struktured
|
|
*/
|
|
|
|
#include "RenderItemDistanceMetric.hpp"
|
|
|
|
// Assumes [0, 1] distance space because it's easy to manage with overflow
|
|
// Underflow is obviously possible though.
|
|
const double RenderItemDistanceMetric::NOT_COMPARABLE_VALUE
|
|
(1.0);
|