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
//! The `point3d` module provides the `Point3D` struct, representing a point in 3D space.
use ;
use ;
/// Represents a point in 3D space.
///
/// # Fields
///
/// - `x`: The x-coordinate.
/// - `y`: The y-coordinate.
/// - `z`: The z-coordinate.
///
/// # Examples
///
/// ```
/// use spatial_hasher::Point3D;
///
/// let point = Point3D { x: 1.0, y: 2.0, z: 3.0 };
/// ```