-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Plot borrowed data #3849
Closed
Closed
Plot borrowed data #3849
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
7856dfd
Move PlotUi
GunnarMorrigan 292ef19
Add GenericPlotPoints trait and impl for iterator
GunnarMorrigan 8cffd45
Add PlotUiBuilder
GunnarMorrigan 9baf13f
Add lifetime to plotui for boxed PlotItem
GunnarMorrigan 914ff82
Make Points generic
GunnarMorrigan 8a44bd6
Add generic constructor for Points
GunnarMorrigan e82d832
Add functions to mutate Points in place
GunnarMorrigan d9c4611
Add PlotItem impl for generic Points and PlotGeometry::GenericPoints
GunnarMorrigan 5e9b705
Remove enum instance Borrowed from PlotPoints
GunnarMorrigan 8428663
Make legend take an iterator
GunnarMorrigan 7ea8a50
Add module plot_ui and import PlotUi and PlotUiBuilder
GunnarMorrigan 4d58b4a
Adjust new show function to have appropriate type
GunnarMorrigan e9cc2b6
Adjust show body to construct PlotUiBuilder for build_fn
GunnarMorrigan cfc4ab0
Adjust legend call to updated legend signature of Iterator
GunnarMorrigan e1cbec1
Adjust PlotUiPrepared to take lifetime
GunnarMorrigan e57ef93
Adjust doc example to match new build_fn in show function
GunnarMorrigan f450c6b
Adjust PlotUi builder style and add borrowed points function
GunnarMorrigan 9fbdcb2
Make PlotUi and PlotUiBuilder public
GunnarMorrigan 655ab7c
Fix demo and examples
GunnarMorrigan 525b4f1
Cargo fmt
GunnarMorrigan 552103d
Merge branch 'master' into plotBorrowedData
GunnarMorrigan 48cf815
Add lifetime via PhantomData to Plot struct
GunnarMorrigan 1ab8ff6
Fix duplicate mod decls
GunnarMorrigan 4758345
Fix examples and demo
GunnarMorrigan ff245bb
Fix doc tests
GunnarMorrigan 5206472
Added scatter plot demo iter example
GunnarMorrigan 231e0b3
Removed unnecessary lifetime
GunnarMorrigan e4cfe4a
Fix doc Plot path
GunnarMorrigan 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
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.
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.
This is a slightly annoying name change, but maybe fine
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.
I can replace it with a single function but would need to expose PlotItem as it would go into a public interface.
This is something I am not sure about. If it is exposed maybe it should be sealed?