diff options
author | Justin Clark-Casey (justincc) | 2011-07-19 03:44:49 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-07-19 03:44:49 +0100 |
commit | 4b9ef4f39c420b99568b853b627ad83d253ac2c9 (patch) | |
tree | bd8d354fb91615e531eec7725f790be209c06149 /OpenSim/Region/Framework/Scenes/SceneGraph.cs | |
parent | Stop undo of just the root prim position in the linkset from shifting the who... (diff) | |
download | opensim-SC-4b9ef4f39c420b99568b853b627ad83d253ac2c9.zip opensim-SC-4b9ef4f39c420b99568b853b627ad83d253ac2c9.tar.gz opensim-SC-4b9ef4f39c420b99568b853b627ad83d253ac2c9.tar.bz2 opensim-SC-4b9ef4f39c420b99568b853b627ad83d253ac2c9.tar.xz |
Rename UpdatePrimRotation() to UpdatePrimGroupRotation() since this is what it actually does and is more consistent with other method names.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneGraph.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneGraph.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs index 26857c2..d5e0bbb 100644 --- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs +++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs | |||
@@ -1297,12 +1297,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
1297 | } | 1297 | } |
1298 | 1298 | ||
1299 | /// <summary> | 1299 | /// <summary> |
1300 | /// | 1300 | /// Update the rotation of a whole group. |
1301 | /// </summary> | 1301 | /// </summary> |
1302 | /// <param name="localID"></param> | 1302 | /// <param name="localID"></param> |
1303 | /// <param name="rot"></param> | 1303 | /// <param name="rot"></param> |
1304 | /// <param name="remoteClient"></param> | 1304 | /// <param name="remoteClient"></param> |
1305 | protected internal void UpdatePrimRotation(uint localID, Quaternion rot, IClientAPI remoteClient) | 1305 | protected internal void UpdatePrimGroupRotation(uint localID, Quaternion rot, IClientAPI remoteClient) |
1306 | { | 1306 | { |
1307 | SceneObjectGroup group = GetGroupByPrim(localID); | 1307 | SceneObjectGroup group = GetGroupByPrim(localID); |
1308 | if (group != null) | 1308 | if (group != null) |
@@ -1321,7 +1321,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1321 | /// <param name="pos"></param> | 1321 | /// <param name="pos"></param> |
1322 | /// <param name="rot"></param> | 1322 | /// <param name="rot"></param> |
1323 | /// <param name="remoteClient"></param> | 1323 | /// <param name="remoteClient"></param> |
1324 | protected internal void UpdatePrimRotation(uint localID, Vector3 pos, Quaternion rot, IClientAPI remoteClient) | 1324 | protected internal void UpdatePrimGroupRotation(uint localID, Vector3 pos, Quaternion rot, IClientAPI remoteClient) |
1325 | { | 1325 | { |
1326 | SceneObjectGroup group = GetGroupByPrim(localID); | 1326 | SceneObjectGroup group = GetGroupByPrim(localID); |
1327 | if (group != null) | 1327 | if (group != null) |