diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneGraph.cs (renamed from OpenSim/Region/Environment/Scenes/InnerScene.cs) | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/InnerScene.cs b/OpenSim/Region/Environment/Scenes/SceneGraph.cs index c8f4a72..ab0ec1f 100644 --- a/OpenSim/Region/Environment/Scenes/InnerScene.cs +++ b/OpenSim/Region/Environment/Scenes/SceneGraph.cs | |||
@@ -39,7 +39,11 @@ namespace OpenSim.Region.Environment.Scenes | |||
39 | { | 39 | { |
40 | public delegate void PhysicsCrash(); | 40 | public delegate void PhysicsCrash(); |
41 | 41 | ||
42 | public class InnerScene | 42 | /// <summary> |
43 | /// This class used to be called InnerScene and may not yet truly be a SceneGraph. The non scene graph components | ||
44 | /// should be migrated out over time. | ||
45 | /// </summary> | ||
46 | public class SceneGraph | ||
43 | { | 47 | { |
44 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 48 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
45 | 49 | ||
@@ -77,7 +81,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
77 | 81 | ||
78 | #endregion | 82 | #endregion |
79 | 83 | ||
80 | protected internal InnerScene(Scene parent, RegionInfo regInfo) | 84 | protected internal SceneGraph(Scene parent, RegionInfo regInfo) |
81 | { | 85 | { |
82 | m_parentScene = parent; | 86 | m_parentScene = parent; |
83 | m_regInfo = regInfo; | 87 | m_regInfo = regInfo; |
@@ -1698,6 +1702,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
1698 | } | 1702 | } |
1699 | return null; | 1703 | return null; |
1700 | } | 1704 | } |
1705 | |||
1701 | /// <summary> | 1706 | /// <summary> |
1702 | /// Calculates the distance between two Vector3s | 1707 | /// Calculates the distance between two Vector3s |
1703 | /// </summary> | 1708 | /// </summary> |