From c8349e21c43b1232aa923783a39cca224460551a Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Sun, 21 Sep 2008 02:41:22 +0000 Subject: Update svn properties, minor formatting cleanup. --- OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Region/ScriptEngine/Common') diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs index 374e401..679b9b8 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs @@ -567,7 +567,7 @@ namespace OpenSim.Region.ScriptEngine.Common double z = axis.z * s; double w = Math.Cos(angle / 2); - if(Double.IsNaN(x) || Double.IsNaN(y) || Double.IsNaN(z) || Double.IsNaN(w)) + if (Double.IsNaN(x) || Double.IsNaN(y) || Double.IsNaN(z) || Double.IsNaN(w)) return new LSL_Types.Quaternion(0.0f, 0.0f, 0.0f, 1.0f); return new LSL_Types.Quaternion((float)x, (float)y, (float)z, (float)w); -- cgit v1.1