dxfscan 0.1.0

Binary DXF parser with typed entity data and lookup indices
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: ISC
/// A 3D point with double-precision coordinates.
#[derive(Debug, Clone, Copy, PartialEq, Default)]
pub struct Point3 {
    /// X coordinate.
    pub x: f64,
    /// Y coordinate.
    pub y: f64,
    /// Z coordinate.
    pub z: f64,
}