-
Notifications
You must be signed in to change notification settings - Fork 0
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
WIP Constellation plot ideas #31
Open
froyo-np
wants to merge
25
commits into
main
Choose a base branch
from
noah/cgraph
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 18 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
46cb652
start on constellation plots...
froyo-np 033016a
harness for building the constellation plot thingy
froyo-np df67cf7
do a gql, merge that data with the csv, render the plot with color af…
froyo-np 0419a40
nicer animation, less janky beginning
froyo-np 34e44c3
update docs
froyo-np 06d61fa
formatting, plus fix texture sampling mistakes
froyo-np 2028e3f
thinking about the best way to handle an interconnected tree of graph…
froyo-np e86a57d
Merge branch 'noah/constellation' into noah/cgraph
froyo-np 3d28085
spin my wheels on math for a bit too long
froyo-np b4e0c34
work out some issues regarding edge rendering. start on being able to…
froyo-np 66480c0
costly but fun
froyo-np 2a72baf
fiddle with edge rendering to increase clarity - I think this graph h…
froyo-np da62163
hovering for funsies - consider filtering next
froyo-np be65080
experimental method for filtering taxon-nodes by things that would sp…
froyo-np 09e5ad5
use the real edges, fix up all the edge width issues
froyo-np 8ec6062
color by controls for demo, smoother animation on edges
froyo-np 575450c
clean up unused sidebar, fix camera aspect ratio
froyo-np 8a8c1e8
first pass at cleanup
froyo-np f289620
use a detail setting that is less harmful to the sfs
froyo-np 30fb4fa
transition to the somewhat more ergonomic render interface system. Sa…
froyo-np f3bbed8
Merge branch 'main' into noah/cgraph
froyo-np bcc6cad
PR review cleanups
froyo-np 8bfc176
readme words, cleanup imports
froyo-np f85e843
remove unused things
froyo-np 5829996
Merge branch 'main' into noah/cgraph
froyo-np File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!doctype html> | ||
<html> | ||
<body> | ||
<canvas | ||
id="glCanvas" | ||
style="top: 0; left: 0%; width: 100%; height: 100%; position: absolute" | ||
> | ||
</body> | ||
</html> | ||
<script | ||
type="module" | ||
src="./src/constellation/constellation.ts" | ||
></script> |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add some controls either on the demo screen itself or in the
README
for theexamples
folder. I had to go hunting for the controls in the code to figure out how to animate it or switch the types!