diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Physics/Meshing/HelperTypes.cs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/OpenSim/Region/Physics/Meshing/HelperTypes.cs b/OpenSim/Region/Physics/Meshing/HelperTypes.cs index 5d9823c..418baf5 100644 --- a/OpenSim/Region/Physics/Meshing/HelperTypes.cs +++ b/OpenSim/Region/Physics/Meshing/HelperTypes.cs | |||
@@ -193,9 +193,10 @@ public class Vertex : PhysicsVector, IComparable<Vertex> | |||
193 | return new Vertex(Y * v.Z - Z * v.Y, Z * v.X - X * v.Z, X * v.Y - Y * v.X); | 193 | return new Vertex(Y * v.Z - Z * v.Y, Z * v.X - X * v.Z, X * v.Y - Y * v.X); |
194 | } | 194 | } |
195 | 195 | ||
196 | // mono compiler moans about overloading operators hiding base | 196 | // disable warning: mono compiler moans about overloading |
197 | // operator but should not according to C# language spec | 197 | // operators hiding base operator but should not according to C# |
198 | #pragma warning disable 0108 | 198 | // language spec |
199 | #pragma warning disable 0108 | ||
199 | public static Vertex operator *(Vertex v, Quaternion q) | 200 | public static Vertex operator *(Vertex v, Quaternion q) |
200 | { | 201 | { |
201 | Matrix4 tm = q.computeMatrix(); | 202 | Matrix4 tm = q.computeMatrix(); |
@@ -253,7 +254,7 @@ public class Vertex : PhysicsVector, IComparable<Vertex> | |||
253 | v1.Z *= mul; | 254 | v1.Z *= mul; |
254 | return v1; | 255 | return v1; |
255 | } | 256 | } |
256 | #pragma warning restore 0108 | 257 | #pragma warning restore 0108 |
257 | 258 | ||
258 | 259 | ||
259 | public float dot(Vertex v) | 260 | public float dot(Vertex v) |