aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Meshing/HelperTypes.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/Meshing/HelperTypes.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/OpenSim/Region/Physics/Meshing/HelperTypes.cs b/OpenSim/Region/Physics/Meshing/HelperTypes.cs
index 7491782..7198cae 100644
--- a/OpenSim/Region/Physics/Meshing/HelperTypes.cs
+++ b/OpenSim/Region/Physics/Meshing/HelperTypes.cs
@@ -356,20 +356,6 @@ public class Triangle
356 radius_square = (float) (rx*rx + ry*ry); 356 radius_square = (float) (rx*rx + ry*ry);
357 } 357 }
358 358
359 public List<Simplex> GetSimplices()
360 {
361 List<Simplex> result = new List<Simplex>();
362 Simplex s1 = new Simplex(v1, v2);
363 Simplex s2 = new Simplex(v2, v3);
364 Simplex s3 = new Simplex(v3, v1);
365
366 result.Add(s1);
367 result.Add(s2);
368 result.Add(s3);
369
370 return result;
371 }
372
373 public override String ToString() 359 public override String ToString()
374 { 360 {
375 NumberFormatInfo nfi = new NumberFormatInfo(); 361 NumberFormatInfo nfi = new NumberFormatInfo();