-
-
Notifications
You must be signed in to change notification settings - Fork 315
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
Convenience function for 3D barplots #624
Comments
it would be nice to have this to match |
I mean you could put that into a convert for meshscatter...something like: convert_arguments(::Type{MeshScatter}, x::{<: Vector{<: Real}}, y::{<: Vector{<: Real}}, z::{<: Vector{<: Real}}, dx::{<: Vector{<: Real}}, dy::{<: Vector{<: Real}}, dz::{<: Vector{<: Real}}) = PlotSpec{MeshScatter}(Point3f.(x, y, z); markersize = Vec3f.(dx, dy, dz)) or just as an extension of the barplot recipe to 3d for ease of access. |
I just realized for me the road blocker is:
|
I think:
I guess, not a lot of people have used Meshscatter productively in the last years😅 |
Would be nice to have a syntax like:
where all above entries could be vectors.
It would be a simpler wrapper of the following:
which might be a bit too verbose for the highest level access (and a beginner may not really understand the
markersize, marker, limits
reason).The text was updated successfully, but these errors were encountered: