acadrust 0.3.3

A pure Rust library for reading and writing CAD files in DXF format (ASCII and Binary) and DWG format (Binary).
Documentation
1
2
3
4
5
6
7
8
9
10
//! DWG stream readers — bit-level deserialization for the DWG binary format.
//!
//! This mirrors the writer-side `dwg_stream_writers` module.

pub mod bit_reader;
pub mod classes_reader;
pub mod handle_reader;
pub mod header_reader;
pub mod merged_reader;
pub mod object_reader;