opencascade-sys 0.3.0

Rust bindings to the OpenCascade CAD Kernel
1
2
3
4
5
6
7
8
9
10
11
12
pub use inner::*;

#[cxx::bridge]
mod inner {
    unsafe extern "C++" {
        include!("opencascade-sys/include/standard.hxx");

        type Handle_Standard_Type;
        pub fn type_name(handle: &Handle_Standard_Type) -> String;
        pub fn IsNull(self: &Handle_Standard_Type) -> bool;
    }
}