about summary refs log tree commit diff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/structs.go b/structs.go
index 0fcdc14..8689c7a 100644
--- a/structs.go
+++ b/structs.go
@@ -19,11 +19,6 @@ func NewCoord(x float64, y float64) Coord {
 	return Coord{x, y}
 }
 
-func ExampleNewCoord() {
-	fmt.Println(NewCoord(1, 1))
-	// Output: {1, 1}
-}
-
 // NewBoundingBox returns a new bounding with the given struct elements
 func NewBoundingBox(inCenter Coord, inHalfDimension float64) BoundingBox {
 	return BoundingBox{