pub mod columnar_index;
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 project_units;
pub mod schema_gen;
pub(crate) mod schema_helpers;
pub mod step_encoding;
pub mod streaming;
pub mod units;
pub use columnar_index::ColumnarEntityIndex;
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, GeoRefSource, 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::{entity_count, parse_entity, EntityScanner, Token};
pub use project_units::{
measure::{measure_unit, MeasureUnit},
resolve_unit_by_ref, ProjectUnits, ResolvedUnit,
};
pub use schema_gen::{AttributeValue, DecodedEntity, GeometryCategory, IfcSchema, ProfileCategory};
pub use schema_helpers::{has_geometry_by_name, is_simple_geometry_type, legacy_aware_ifc_type};
pub use step_encoding::{decode_ifc_string, encode_ifc_string};
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, try_extract_plane_angle_to_radians,
};