-
Notifications
You must be signed in to change notification settings - Fork 45
The correct way to add elements (paths, lines, etc) in a loop. #71
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
Comments
Yes, it consumes the object each time one invokes any of the path methods. This was done to allow for chaining operations, like what you have in your code. So all you need to do it assign it back to the original variable or use, for instance, folding: let data = (0..3).fold(Data::new(), |data, i| data.move_to((10, i + 10)).line_by((5, 0))).close(); |
thank you! I will try that. Also: what is a "path method"? Is it a method that acts on a It would also be nice to extend the examples-section of this crate a little e.g. several different ways of adding elements loops, conditions e.g. adding several discrete lines (not connected) in a loop (like i tried). Or maybe even recreate the example document used in the wikipedia article for svg. |
Yes, you can keep chaining operations in different ways. Just remember that they consume the object but then return it back to you. So you have to either append another operation directly or reuse the original or create a new variable binding for future use: let data = Data::new();
let data = data.line_by((10, 10));
let data = data.line_by((10, 10));
let data = data.line_by((10, 10));
let data = data.line_by((10, 10));
let mut data = Data::new();
data = data.line_by((10, 10));
data = data.line_by((10, 10));
data = data.line_by((10, 10));
data = data.line_by((10, 10)); Think also that you might want to have a separate path with a separate data attribute for each your object instead of putting them all into the same path. Yes, by a path method, I meant those available in https://www.w3.org/TR/SVG2/paths.html#PathData Regarding the documentation, there was this issue where I shared my thoughts: I agree that it would be nice to have move examples of how this crate is supposed to be used—and please feel free to contribute—but the SVG specification is beyond the scope, including what one can compose and how. |
I am struggling with this library and am wondering if I misunderstood something.
I expected to use the library like this (similar to the example on the docs.rs-page):
Apparently
data
is moved throughmove_to()
and therefor cannot be used in a loop. A similar thing happens if I want to add data to the document within a loop.What is the correct way of adding elements in a loop?
The text was updated successfully, but these errors were encountered: