hfss_fld 0.1.3

Ansys HFSS `.fld` file parser
Documentation
#[macro_use]
extern crate colour;
extern crate regex;

pub mod fld_file_data_structs;

#[cfg(test)]
mod tests {

    use super::*;
    use fld_file_data_structs::HDataGroup;

    #[test]
    fn it_works() {
        let file_paths = vec![
            String::from("dense_ch_1.fld"),
            String::from("dense_ch_2.fld"),
            String::from("dense_ch_3.fld"),
            String::from("dense_ch_4.fld"),
        ];

        let h_data = HDataGroup::from_files(file_paths, false);

        let grouped_data = h_data.grouped_double_dir_data_points([0, 1], 0);
    }
}