diff options
author | lbsa71 | 2007-12-27 21:41:48 +0000 |
---|---|---|
committer | lbsa71 | 2007-12-27 21:41:48 +0000 |
commit | efd90b56b761219af6425b1c7a2cdd3b6ffb4de2 (patch) | |
tree | bf5b897e1e3c13211e3e2fc61d30508b94c928c0 /OpenSim/Region/Environment/Scenes/EntityBase.cs | |
parent | * removed always true if (diff) | |
download | opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.zip opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.tar.gz opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.tar.bz2 opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.tar.xz |
* Optimized usings
* shortened references
* Removed redundant 'this'
* Normalized EOF
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/EntityBase.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/EntityBase.cs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/OpenSim/Region/Environment/Scenes/EntityBase.cs b/OpenSim/Region/Environment/Scenes/EntityBase.cs index 4556c63..18799e4 100644 --- a/OpenSim/Region/Environment/Scenes/EntityBase.cs +++ b/OpenSim/Region/Environment/Scenes/EntityBase.cs | |||
@@ -145,7 +145,6 @@ namespace OpenSim.Region.Environment.Scenes | |||
145 | return (EntityBase) MemberwiseClone(); | 145 | return (EntityBase) MemberwiseClone(); |
146 | } | 146 | } |
147 | 147 | ||
148 | |||
149 | 148 | ||
150 | public abstract void SetText(string text, Vector3 color, double alpha); | 149 | public abstract void SetText(string text, Vector3 color, double alpha); |
151 | } | 150 | } |
@@ -161,15 +160,13 @@ namespace OpenSim.Region.Environment.Scenes | |||
161 | 160 | ||
162 | public EntityIntersection() | 161 | public EntityIntersection() |
163 | { | 162 | { |
164 | |||
165 | |||
166 | } | 163 | } |
164 | |||
167 | public EntityIntersection(Vector3 _ipoint, float _normal, bool _HitTF) | 165 | public EntityIntersection(Vector3 _ipoint, float _normal, bool _HitTF) |
168 | { | 166 | { |
169 | ipoint = _ipoint; | 167 | ipoint = _ipoint; |
170 | normal = _normal; | 168 | normal = _normal; |
171 | HitTF = _HitTF; | 169 | HitTF = _HitTF; |
172 | } | 170 | } |
173 | |||
174 | } | 171 | } |
175 | } \ No newline at end of file | 172 | } \ No newline at end of file |