Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/compositor/intern/COM_ChunkOrder.cpp')
-rw-r--r--source/blender/compositor/intern/COM_ChunkOrder.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/source/blender/compositor/intern/COM_ChunkOrder.cpp b/source/blender/compositor/intern/COM_ChunkOrder.cpp
index 91437aff9e0..3baa50da487 100644
--- a/source/blender/compositor/intern/COM_ChunkOrder.cpp
+++ b/source/blender/compositor/intern/COM_ChunkOrder.cpp
@@ -29,13 +29,12 @@ ChunkOrder::ChunkOrder()
void ChunkOrder::update_distance(ChunkOrderHotspot **hotspots, unsigned int len_hotspots)
{
- unsigned int index;
double new_distance = FLT_MAX;
- for (index = 0; index < len_hotspots; index++) {
+ for (int index = 0; index < len_hotspots; index++) {
ChunkOrderHotspot *hotspot = hotspots[index];
- double ndistance = hotspot->determineDistance(x, y);
- if (ndistance < new_distance) {
- new_distance = ndistance;
+ double distance_to_hotspot = hotspot->calc_distance(x, y);
+ if (distance_to_hotspot < new_distance) {
+ new_distance = distance_to_hotspot;
}
}
this->distance = new_distance;