-
-
Notifications
You must be signed in to change notification settings - Fork 7.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
incomplete data in mpl_toolkits.mplot3d.art3d.Path3DCollection #7243
Comments
The problem is that these methods are used by the backends, which all On Sun, Oct 9, 2016 at 6:37 PM, Nico Schlömer [email protected]
|
If there is no other method for extracting the data, I'd vote for it. |
Any chance of this happening? |
Anything is possible. It is just a question of someone putting their mind
to implementing it.
What if we came up with a name for a method that would act as the
"get_data()" for any artist? So, for 2D path collections, it would be
get_offsets(), for images, it would be the image data, for 3d paths, it
would be the untransformed 3d offsets? (note, get_data() is already taken).
This is a MEP-worthy task, and once a MEP is made, it makes it much more
likely it'll get implemented.
…On Fri, May 26, 2017 at 9:15 AM, Nico Schlömer ***@***.***> wrote:
Any chance of this happening?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#7243 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AARy-OiU8-pJfDTMND3lqeMEXIlFUXg9ks5r9tB9gaJpZM4KSIqR>
.
|
What does MEP mean? I like the idea of a unifying |
MEP == "Matplotlib Enhancement Proposal"
http://matplotlib.org/devel/MEP/index.html
…On Fri, Jun 2, 2017 at 6:15 PM, Nico Schlömer ***@***.***> wrote:
What does MEP mean?
I like the idea of a unifying get_data method. Perhaps get_raw_data would
be appropriate.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#7243 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AARy-CpuCsRmnh8AdT-oUXKlixJSsjRWks5sAIl6gaJpZM4KSIqR>
.
|
I have the same problem and I want to know how to achieve it eventually? Would you please tell me? Thank you very much |
I had the same issue and simply used the property |
This issue has been marked "inactive" because it has been 365 days since the last comment. If this issue is still present in recent Matplotlib releases, or the feature request is still wanted, please leave a comment and this label will be removed. If there are no updates in another 30 days, this issue will be automatically closed, but you are free to re-open or create a new issue if needed. We value issue reports, and this procedure is meant to help us resurface and prioritize issues that have not been addressed yet, not make them disappear. Thanks for your help! |
Still present, feature still requested. |
After creating a
mpl_toolkits.mplot3d.art3d.Path3DCollection
, e.g.,I'd like to retrieve
pos
from the figure. As in 2D, I expectedget_offsets
to retrieve the data, butonly returns the first two colums of
pos
.The text was updated successfully, but these errors were encountered: