| Crates.io | sfcgal-sys |
| lib.rs | sfcgal-sys |
| version | 0.9.0 |
| created_at | 2019-03-10 18:42:03.25907+00 |
| updated_at | 2025-05-27 08:33:06.750783+00 |
| description | Low-level FFI bindings to SFCGAL. |
| homepage | https://github.com/mthh/sfcgal-sys |
| repository | https://github.com/mthh/sfcgal-sys |
| max_upload_size | |
| id | 119908 |
| size | 35,227 |
Rust low-level FFI bindings to SFCGAL 2.x.x C API.
Don't use this crate directly, prefer it's higher-level wrapper : sfcgal-rs.
[!IMPORTANT] Note that the required version of SFCGAL is currently 2.x.x.
If you want to use SFCCAL 1.5.x, you can use the 0.7.x version of this crate / of sfcgal-rs.
This crate contains a few lines of C code (compiled as a static library with cc crate) wrapping SFCGAL C API in order to replace the error and warning handlers (which use printf by default).
It expects SFCGAL to be installed as a system library and that you have the header file for it's C API.
Then bindgen is run to generate these low-levels bindings.
In addition to all the sfcgal_ types and functions, this crate expose :
initialize function: it calls sfcgal_init() function then it calls a custom w_sfcgal_init_handlers() function which replace the error and warning handlers from printf to a char buffer. That initialize function internally uses std::sync::Once to ensure it's only called once.w_sfcgal_get_last_error and w_sfcgal_get_last_warning which respectively reads the buffer containing the error message and the buffer containing the warning message.In the future it could probably be improved by not requiring SFCGAL to be installed as a system library.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.