Documentation
¶
Overview ¶
Package spatial implements spatial data structures.
Spatial data structures are specialized data structures used to efficiently store, organize, and query data that represents objects in space, such as points, lines, polygons, or volumes.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Point1D ¶
type Point1D[T any] struct { X T }
Point1D represents a point in one-dimensional space.
type Point2D ¶
type Point2D[T any] struct { X, Y T }
Point2D represents a point in two-dimensional space.
type Point3D ¶
type Point3D[T any] struct { X, Y, Z T }
Point3D represents a point in three-dimensional space.
Click to show internal directories.
Click to hide internal directories.