ldr_rs/
lib.rs

1// ldr-rs: LDraw models for Rust
2// Copyright (C) 2017-2025  Edgar Gonzàlez i Pellicer
3//
4// This file is part of ldr-rs.
5//
6// ldr-rs is free software: you can redistribute it and/or
7// modify it under the terms of the GNU General Public License as
8// published by the Free Software Foundation, either version 3 of the
9// License, or (at your option) any later version.
10//
11// This program is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15//
16// You should have received a copy of the GNU General Public License
17// along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19//! [LDraw][1] models for Rust.
20//!
21//! [1]: http://www.ldraw.org
22
23#[macro_use]
24extern crate lazy_static;
25
26extern crate nalgebra as na;
27extern crate phf;
28extern crate regex;
29
30pub mod file;
31pub mod load;
32pub mod loader;
33pub mod multi_file;
34pub mod types;
35
36pub use self::file::*;
37pub use self::load::*;
38pub use self::loader::*;
39pub use self::multi_file::*;
40pub use self::types::*;
41
42// Local Variables:
43// coding: utf-8
44// End: