You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* Arcseconds to radians *//* Radians to arcseconds */
#defineDR2AS (206264.8062470963551564734)
/* Arcseconds to radians */
#defineDAS2R (4.848136811095359935899141e-6)
/* Seconds of time to radians */
#defineDS2R (7.272205216643039903848712e-5)
/* Arcseconds in a full circle */
#defineTURNAS (1296000.0)
Bindgen Invocation
let bindings = bindgen::Builder::default().generate_inline_functions(true).generate_cstr(true).use_core().no_convert_floats().header("extern/src/sofa.h").header("extern/src/sofam.h").blocklist_var("FP_NAN").blocklist_var("FP_INFINITE").blocklist_var("FP_ZERO").blocklist_var("FP_SUBNORMAL").blocklist_var("FP_NORMAL").generate().expect("Unable to generate bindings");
It appears that variables that use scientific notation in define statements are ignored. I can codify these in my own code, although, it would be nice to rely on the bindings.rs file. Are there any methods that enable this? Or is this truly an issue?
The text was updated successfully, but these errors were encountered:
Input C/C++ Header
Bindgen Invocation
Actual Results
Expected Results
It appears that variables that use scientific notation in define statements are ignored. I can codify these in my own code, although, it would be nice to rely on the bindings.rs file. Are there any methods that enable this? Or is this truly an issue?
The text was updated successfully, but these errors were encountered: