aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.World/types/Triangle.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/OpenSim.World/types/Triangle.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/OpenSim/OpenSim.World/types/Triangle.cs b/OpenSim/OpenSim.World/types/Triangle.cs
deleted file mode 100644
index 488cc21..0000000
--- a/OpenSim/OpenSim.World/types/Triangle.cs
+++ /dev/null
@@ -1,37 +0,0 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using Axiom.MathLib;
5
6namespace OpenSim.Region.types
7{
8 public class Triangle
9 {
10 Vector3 a;
11 Vector3 b;
12 Vector3 c;
13
14 /// <summary>
15 ///
16 /// </summary>
17 public Triangle()
18 {
19 a = new Vector3();
20 b = new Vector3();
21 c = new Vector3();
22 }
23
24 /// <summary>
25 ///
26 /// </summary>
27 /// <param name="A"></param>
28 /// <param name="B"></param>
29 /// <param name="C"></param>
30 public Triangle(Vector3 A, Vector3 B, Vector3 C)
31 {
32 a = A;
33 b = B;
34 c = C;
35 }
36 }
37}