Created
April 28, 2017 12:29
-
-
Save eyalcohen4/e82157fc6e2c8d84165de100b3e64a8e to your computer and use it in GitHub Desktop.
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
public boolean pointOnSegment(Point p) { | |
if (p.isRight(_poLeft) && p.isLeft(_poRight)) { | |
return true; | |
} | |
return false; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment