aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/types/Triangle.cs
blob: 8dfea6e7627b44bb9b8a589d071d25ce3ab1a0e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
using System.Collections.Generic;
using System.Text;
using Axiom.MathLib;

namespace OpenSim.types
{
    public class Triangle
    {
        Vector3 a;
        Vector3 b;
        Vector3 c;

        public Triangle()
        {
            a = new Vector3();
            b = new Vector3();
            c = new Vector3();
        }

        public Triangle(Vector3 A, Vector3 B, Vector3 C)
        {
            a = A;
            b = B;
            c = C;
        }
    }
}