This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// <summary> | |
| /// Determines if a Vector2 point is within a triangle | |
| /// </summary> | |
| /// <param name="point">Point to check</param> | |
| /// <param name="p0">Triangle vertex position</param> | |
| /// <param name="p1">Triangle vertex position</param> | |
| /// <param name="p2">Triangle vertex position</param> | |
| /// <returns>True if point is inside triangle, otherwise false</returns> | |
| /// <remarks> |
NewerOlder