Skip to content
New issue

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

feature/coordinate array integration #316

Merged
merged 13 commits into from
Nov 11, 2024

Conversation

rhayes777
Copy link
Collaborator

Resolves #314

Optionally specify neighbor_degree to include immediate neighbors, neighbors of neighbors etc.

# Immediate neigbors
result = solver.solve(
    tracer,
    source_plane_coordinate=(0.0, 0.0),
    neighbor_degree=1,
)

# Neighbors of neigbors
result = solver.solve(
    tracer,
    source_plane_coordinate=(0.0, 0.0),
    neighbor_degree=2,
)


plt.xlabel("X")
plt.ylabel("Y")
plt.title(f"Triangles")

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
plt.title(f"Triangles")
plt.title("Triangles")

@rhayes777 rhayes777 merged commit 023d823 into main Nov 11, 2024
0 of 8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

PointSolver option to return two image positions
3 participants