diff options
author | UbitUmarov | 2018-11-17 20:43:16 +0000 |
---|---|---|
committer | UbitUmarov | 2018-11-17 20:43:16 +0000 |
commit | ad99461590dcf592df72b85a77ae93d6434a63b7 (patch) | |
tree | 13420b692f7e95b4832b45dae6dce4bb0f067fe9 /OpenSim | |
parent | ooops (diff) | |
download | opensim-SC-ad99461590dcf592df72b85a77ae93d6434a63b7.zip opensim-SC-ad99461590dcf592df72b85a77ae93d6434a63b7.tar.gz opensim-SC-ad99461590dcf592df72b85a77ae93d6434a63b7.tar.bz2 opensim-SC-ad99461590dcf592df72b85a77ae93d6434a63b7.tar.xz |
code aesthetics
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs index 0331a4c..dd4f974 100644 --- a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs +++ b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs | |||
@@ -472,14 +472,14 @@ namespace OpenSim.Region.ScriptEngine.Shared | |||
472 | 472 | ||
473 | public static explicit operator string(Quaternion r) | 473 | public static explicit operator string(Quaternion r) |
474 | { | 474 | { |
475 | string s=String.Format(Culture.FormatProvider,"<{0:0.000000}, {1:0.000000}, {2:0.000000}, {3:0.000000}>", r.x, r.y, r.z, r.s); | 475 | string st=String.Format(Culture.FormatProvider,"<{0:0.000000}, {1:0.000000}, {2:0.000000}, {3:0.000000}>", r.x, r.y, r.z, r.s); |
476 | return s; | 476 | return st; |
477 | } | 477 | } |
478 | 478 | ||
479 | public static explicit operator LSLString(Quaternion r) | 479 | public static explicit operator LSLString(Quaternion r) |
480 | { | 480 | { |
481 | string s=String.Format(Culture.FormatProvider,"<{0:0.000000}, {1:0.000000}, {2:0.000000}, {3:0.000000}>", r.x, r.y, r.z, r.s); | 481 | string st=String.Format(Culture.FormatProvider,"<{0:0.000000}, {1:0.000000}, {2:0.000000}, {3:0.000000}>", r.x, r.y, r.z, r.s); |
482 | return new LSLString(s); | 482 | return new LSLString(st); |
483 | } | 483 | } |
484 | 484 | ||
485 | public static explicit operator Quaternion(string s) | 485 | public static explicit operator Quaternion(string s) |