From 370e79cd9ec9682842bc608e6ee9f0437ee737a1 Mon Sep 17 00:00:00 2001 From: Tedd Hansen Date: Mon, 14 Jan 2008 15:37:00 +0000 Subject: ZERO_ROTATION set to 0,0,0,1 -- not 0,0,0,0 ;) --- OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim') diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs index 43865c8..33e5c68 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs @@ -2158,8 +2158,8 @@ namespace OpenSim.Region.ScriptEngine.Common public const double SQRT2 = 1.414213538f; // Can not be public const? - public vector ZERO_VECTOR = new vector(0, 0, 0); - public rotation ZERO_ROTATION = new rotation(0, 0, 0, 0); + public vector ZERO_VECTOR = new vector(0.0, 0.0, 0.0); + public rotation ZERO_ROTATION = new rotation(0.0, 0, 0.0, 1.0); } } \ No newline at end of file -- cgit v1.1