1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//! KittyCAD's Modeling API lets you design 3D models.
//! # Beware
//! This project does not use semver. We are using 0.1.x for everything. If you use this crate, commit your Cargo.lock to avoid being broken when we publish a new version.
//! Why? Because we use this primarily for KittyCAD server and clients, where we are on top of all changes.
/// Various coordinate systems.
/// chrono wrapper for datetimes.
/// The modeling command enum with each specific modeling command.
/// Import and export types.
/// Modeling command IDs, used to associated requests and responses.
/// Also used to construct commands which refer to previous commands.
/// When a modeling command is successful, these responses could be returned.
/// Controlling the rendering session.
/// Types that are shared between various modeling commands, like Point3d.
/// The modeling command trait that each modeling command implements.
/// Units of measurement.
/// Types for the WebSocket API.
// Export some key items for anyone consuming the library.
pub use *;
pub use output;
pub use *;