pub mod decoder;
pub mod error;
pub mod fast_parse;
pub mod generated;
pub mod georef;
pub mod legacy_entities;
pub mod model_bounds;
pub mod parser;
pub mod schema_gen;
pub(crate) mod schema_helpers;
pub mod streaming;
pub mod units;
pub use decoder::{build_entity_index, EntityDecoder, EntityIndex};
pub use error::{Error, Result};
pub use fast_parse::{
extract_coordinate_list_from_entity, extract_entity_refs_from_list, extract_entity_type_name,
extract_face_indices_from_entity, extract_first_entity_ref, parse_coordinates_direct,
parse_indices_direct, process_triangulated_faceset_direct, should_use_fast_path, FastMeshData,
};
pub use generated::IfcType;
pub use georef::{GeoRefExtractor, GeoReference, RtcOffset};
pub use legacy_entities::{
get_legacy_entity_info, is_legacy_entity, map_legacy_to_base_type, LegacyEntityInfo,
};
pub use model_bounds::{scan_model_bounds, scan_placement_bounds, ModelBounds};
pub use parser::{parse_entity, EntityScanner, Token};
pub use schema_gen::{AttributeValue, DecodedEntity, GeometryCategory, IfcSchema, ProfileCategory};
pub use schema_helpers::{has_geometry_by_name, is_simple_geometry_type};
pub use streaming::{parse_stream, ParseEvent, StreamConfig};
pub use units::{
extract_length_unit_scale, extract_plane_angle_to_radians, get_si_prefix_multiplier,
try_extract_length_unit_scale,
};