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
Add an XBar and YBar to generate bar plots. These should have an internal structure for the bar width and bar shift keys.
XBar
YBar
bar width
bar shift
It should be basically the same as the time I implemented Type2D::Smooth(f64): 659f09d
Type2D::Smooth(f64)
Should the internal structure just be (f64, f64)? Or maybe something like:
(f64, f64)
pub struct bar { bar_width: Option<f64>, bar_shift: Option<f64>, }
The text was updated successfully, but these errors were encountered:
Fix issue #5. Add support for XBar and YBar
018229c
Merge pull request #13 from DJDuque/bar
ce40569
Fix issue #5. Add Type2D::XBar and Type2D::YBar
DJDuque
No branches or pull requests
Add an
XBar
andYBar
to generate bar plots. These should have an internal structure for thebar width
andbar shift
keys.It should be basically the same as the time I implemented
Type2D::Smooth(f64)
:659f09d
Should the internal structure just be
(f64, f64)
? Or maybe something like:The text was updated successfully, but these errors were encountered: