Ballz.GameSession.World.Terrain.Triangle.Triangle C# (CSharp) Method

Triangle() public method

public Triangle ( Vector2 a, Vector2 b, Vector2 c ) : Microsoft.Xna.Framework
a Vector2
b Vector2
c Vector2
return Microsoft.Xna.Framework
            public Triangle(Vector2 a, Vector2 b, Vector2 c)
            {
                this.A = a; this.B = b; this.C = c;
            }
        }
Terrain.Triangle