diff options
author | Justin Clark-Casey (justincc) | 2011-04-12 22:30:43 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-04-12 22:30:43 +0100 |
commit | b0889ed92a3c7d152f9b05aec1ce00dfc010e34e (patch) | |
tree | d813b4df1c0a5c6786335666d3d57fb3ef22c467 /OpenSim/Region/Framework/Scenes | |
parent | If an object is rezzed directly from a prim inventory then give it the rotati... (diff) | |
download | opensim-SC_OLD-b0889ed92a3c7d152f9b05aec1ce00dfc010e34e.zip opensim-SC_OLD-b0889ed92a3c7d152f9b05aec1ce00dfc010e34e.tar.gz opensim-SC_OLD-b0889ed92a3c7d152f9b05aec1ce00dfc010e34e.tar.bz2 opensim-SC_OLD-b0889ed92a3c7d152f9b05aec1ce00dfc010e34e.tar.xz |
refactor: simplify bRayEndIsIntersection boolean set from RayEndIsIntersection byte
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs index 254879b..0f85925 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |||
@@ -1989,18 +1989,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1989 | return; | 1989 | return; |
1990 | } | 1990 | } |
1991 | 1991 | ||
1992 | // Work out position details | 1992 | byte bRayEndIsIntersection = (byte)(RayEndIsIntersection ? 1 : 0); |
1993 | byte bRayEndIsIntersection = (byte)0; | ||
1994 | |||
1995 | if (RayEndIsIntersection) | ||
1996 | { | ||
1997 | bRayEndIsIntersection = (byte)1; | ||
1998 | } | ||
1999 | else | ||
2000 | { | ||
2001 | bRayEndIsIntersection = (byte)0; | ||
2002 | } | ||
2003 | |||
2004 | Vector3 scale = new Vector3(0.5f, 0.5f, 0.5f); | 1993 | Vector3 scale = new Vector3(0.5f, 0.5f, 0.5f); |
2005 | Vector3 pos | 1994 | Vector3 pos |
2006 | = GetNewRezLocation( | 1995 | = GetNewRezLocation( |