We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be useful to have adaptive versions of the following predicates
parallelorder
parallelorder(a, b, p, q) = orient(b - a, q - p, 0)
acuteangle
function acuteangle(p, q, r) prx, pry = p[1] - r[1], p[2] - r[2] qrx, qry = q[1] - r[1], q[2] - r[2] return prx * qrx + pry * qry end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be useful to have adaptive versions of the following predicates
parallelorder
: This predicate is defined byparallelorder(a, b, p, q) = orient(b - a, q - p, 0)
for points in the plane.acuteangle
: Defined byThe text was updated successfully, but these errors were encountered: