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> | |
| /// OpenTK/OpenGl pick matrix calculation. Takes pick location,pick region to | |
| // modify the current viewport matrix. | |
| /// </summary> | |
| /// <param name="x">The x pick location.</param> | |
| /// <param name="y">The y pick location.</param> | |
| /// <param name="deltax">The pick region x bounds.</param> | |
| /// <param name="deltay">The pick region y bounds.</param> | |
| /// <param name="viewport">The viewport matrix.</param> | |
| public void PickMatrix(double x, double y, double deltax, double deltay, int[] viewport) |
NewerOlder