comparison pkg/octree/vertex.go @ 2572:7686c7c23506

Morphological differences: Moved some code into octree package.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 11 Mar 2019 14:00:49 +0100
parents 45d51a49f191
children 2a4216c81e7b
comparison
equal deleted inserted replaced
2571:eec11d3d74f9 2572:7686c7c23506
24 24
25 "gemma.intevation.de/gemma/pkg/wkb" 25 "gemma.intevation.de/gemma/pkg/wkb"
26 ) 26 )
27 27
28 type ( 28 type (
29 Point struct {
30 X float64
31 Y float64
32 }
33
29 // Vertex is a 3D vertex. 34 // Vertex is a 3D vertex.
30 Vertex struct { 35 Vertex struct {
31 X float64 36 X float64
32 Y float64 37 Y float64
33 Z float64 38 Z float64