aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorUbitUmarov2018-11-17 17:05:28 +0000
committerUbitUmarov2018-11-17 17:05:28 +0000
commitefd6fb05a9f3805ce19dc432b6d084497cd45573 (patch)
tree4dd255f52392a2e9c3fd4830559e28750129ef78 /OpenSim/Framework
parentcode aesthetics (diff)
downloadopensim-SC-efd6fb05a9f3805ce19dc432b6d084497cd45573.zip
opensim-SC-efd6fb05a9f3805ce19dc432b6d084497cd45573.tar.gz
opensim-SC-efd6fb05a9f3805ce19dc432b6d084497cd45573.tar.bz2
opensim-SC-efd6fb05a9f3805ce19dc432b6d084497cd45573.tar.xz
code aesthetics
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Util.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs
index 6e0d30d..f8469b6 100644
--- a/OpenSim/Framework/Util.cs
+++ b/OpenSim/Framework/Util.cs
@@ -899,7 +899,7 @@ namespace OpenSim.Framework
899 /// <returns></returns> 899 /// <returns></returns>
900 public static bool IsInsideBox(Vector3 v, Vector3 min, Vector3 max) 900 public static bool IsInsideBox(Vector3 v, Vector3 min, Vector3 max)
901 { 901 {
902 return v.X >= min.X & v.Y >= min.Y && v.Z >= min.Z 902 return v.X >= min.X && v.Y >= min.Y && v.Z >= min.Z
903 && v.X <= max.X && v.Y <= max.Y && v.Z <= max.Z; 903 && v.X <= max.X && v.Y <= max.Y && v.Z <= max.Z;
904 } 904 }
905 905