-
Notifications
You must be signed in to change notification settings - Fork 42
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
compute_voronoi should return a Vec<GGeom> #32
Comments
hum if you don't want What don't you want this ? |
It's supposed to bind |
so you want to also move lots of crate in the I'm not sure to see the worth of moving it to a separate crate, but if you prefer and if the usage of this crate from |
To be more clear: I'm feeling uneasy about the whole |
Also: it's pretty common to have the C functions declaration and C library linking done in a separate crate and to have wrapper inside its own crate. Basically, having a ffi crate and a "rust" one. Don't know if that makes sense in here? |
I have to admit that in my opinion the code contained in I may not be as uncompromising about conversion (as in Regarding the fact of having two separate crates (ffi + higher level bindings), I think you're right and it should probably be done ! |
for the moment the ffi is contained in one module, the rest of the crate is for conversion with the I do agree with the fact that |
(I haven't used |
There is no point into making a conversion inside
geos
, it should be done alongside or outside but not inside thecompute_voronoi
function.The text was updated successfully, but these errors were encountered: