diff options
author | UbitUmarov | 2012-04-29 06:39:09 +0100 |
---|---|---|
committer | UbitUmarov | 2012-04-29 06:39:09 +0100 |
commit | 84b5b3e89b4814c29b7782578dfcd6fa2f0c77f9 (patch) | |
tree | a16d492fc77aefb97ebdf6eac224a3cd31ddcc4a /OpenSim/Region/ScriptEngine | |
parent | remove repeated set of group rotation to physics (diff) | |
download | opensim-SC_OLD-84b5b3e89b4814c29b7782578dfcd6fa2f0c77f9.zip opensim-SC_OLD-84b5b3e89b4814c29b7782578dfcd6fa2f0c77f9.tar.gz opensim-SC_OLD-84b5b3e89b4814c29b7782578dfcd6fa2f0c77f9.tar.bz2 opensim-SC_OLD-84b5b3e89b4814c29b7782578dfcd6fa2f0c77f9.tar.xz |
llGetGeometricCenter...
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 6ee1a5d..0c28bf5 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -8527,7 +8527,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
8527 | 8527 | ||
8528 | public LSL_Vector llGetGeometricCenter() | 8528 | public LSL_Vector llGetGeometricCenter() |
8529 | { | 8529 | { |
8530 | return new LSL_Vector(m_host.GetGeometricCenter().X, m_host.GetGeometricCenter().Y, m_host.GetGeometricCenter().Z); | 8530 | Vector3 tmp = m_host.GetGeometricCenter(); |
8531 | return new LSL_Vector(tmp.X, tmp.Y, tmp.Z); | ||
8531 | } | 8532 | } |
8532 | 8533 | ||
8533 | public LSL_List llGetPrimitiveParams(LSL_List rules) | 8534 | public LSL_List llGetPrimitiveParams(LSL_List rules) |