aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.World/types/Triangle.cs
diff options
context:
space:
mode:
authorMW2007-05-31 10:12:55 +0000
committerMW2007-05-31 10:12:55 +0000
commitf1e13468069b8dc2719b12f0bc9bb3cc0d999e2a (patch)
tree133e7386341314afa4d7acdc6b8ec0634ce06af1 /OpenSim/OpenSim.World/types/Triangle.cs
parentAs its my last commit for the day, it just looks better to leave it on a even... (diff)
downloadopensim-SC_OLD-f1e13468069b8dc2719b12f0bc9bb3cc0d999e2a.zip
opensim-SC_OLD-f1e13468069b8dc2719b12f0bc9bb3cc0d999e2a.tar.gz
opensim-SC_OLD-f1e13468069b8dc2719b12f0bc9bb3cc0d999e2a.tar.bz2
opensim-SC_OLD-f1e13468069b8dc2719b12f0bc9bb3cc0d999e2a.tar.xz
Added a few summary comments to OpenSim.World files
Diffstat (limited to '')
-rw-r--r--OpenSim/OpenSim.World/types/Triangle.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/OpenSim.World/types/Triangle.cs b/OpenSim/OpenSim.World/types/Triangle.cs
index 8dfea6e..07c0a91 100644
--- a/OpenSim/OpenSim.World/types/Triangle.cs
+++ b/OpenSim/OpenSim.World/types/Triangle.cs
@@ -11,6 +11,9 @@ namespace OpenSim.types
11 Vector3 b; 11 Vector3 b;
12 Vector3 c; 12 Vector3 c;
13 13
14 /// <summary>
15 ///
16 /// </summary>
14 public Triangle() 17 public Triangle()
15 { 18 {
16 a = new Vector3(); 19 a = new Vector3();
@@ -18,6 +21,12 @@ namespace OpenSim.types
18 c = new Vector3(); 21 c = new Vector3();
19 } 22 }
20 23
24 /// <summary>
25 ///
26 /// </summary>
27 /// <param name="A"></param>
28 /// <param name="B"></param>
29 /// <param name="C"></param>
21 public Triangle(Vector3 A, Vector3 B, Vector3 C) 30 public Triangle(Vector3 A, Vector3 B, Vector3 C)
22 { 31 {
23 a = A; 32 a = A;