From 12452369c2c98b76e2d75a38d0ee887845f4e8b3 Mon Sep 17 00:00:00 2001 From: georges <> Date: Fri, 16 Feb 2001 00:24:09 +0000 Subject: [PATCH] *** empty log message *** --- panda/src/mathutil/boundingSphere.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/mathutil/boundingSphere.cxx b/panda/src/mathutil/boundingSphere.cxx index 0d5da76cea..e15333279e 100644 --- a/panda/src/mathutil/boundingSphere.cxx +++ b/panda/src/mathutil/boundingSphere.cxx @@ -157,7 +157,7 @@ extend_by_finite(const FiniteBoundingVolume *volume) { LVector3f max1 = volume->get_max(); if (is_empty()) { - _center = (min1 + max1) / 2.0; + _center = (min1 + max1) * 0.5; _radius = length(LVector3f(max1 - _center)); _flags = 0; } else {