JuliaGeometry / JuliaGeometry/AdaptivePredicates.jl
Other predicates
Open
Nobody has claimed this yet.
- Dominant language
- Julia
- Stars
- 17
- Forks
- 2
- PR merge metrics
- No merged PRs in 30d
Description
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 by
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
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by reviewing the repository's existing adaptive predicate implementations and API, then compare them with the issue's definitions for parallelorder and acuteangle. Done means adaptive versions of both predicates are available with behavior consistent with the stated formulas; the issue names no files or tests, so those locations must be identified first.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- julia
- Domain
- computer-graphics
- Issue type
- Feature
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100