diff --git a/geo/aabb.go b/geo/aabb.go index 43a95b7..d194405 100644 --- a/geo/aabb.go +++ b/geo/aabb.go @@ -1,8 +1,8 @@ package geo import ( - "github.com/engoengine/glm" "github.com/EngoEngine/math" + "github.com/engoengine/glm" ) // AABB is an axis-aligned bounding box diff --git a/geo/internal/qhull/qhull.go b/geo/internal/qhull/qhull.go index 90cf671..0a2049d 100644 --- a/geo/internal/qhull/qhull.go +++ b/geo/internal/qhull/qhull.go @@ -2,8 +2,8 @@ package qhull import ( "fmt" - "github.com/engoengine/glm" "github.com/EngoEngine/math" + "github.com/engoengine/glm" ) const ( diff --git a/geo/obb.go b/geo/obb.go index 19165b2..4517830 100644 --- a/geo/obb.go +++ b/geo/obb.go @@ -1,8 +1,8 @@ package geo import ( - "github.com/engoengine/glm" "github.com/EngoEngine/math" + "github.com/engoengine/glm" ) // OBB is a Oriented Bounding Box. diff --git a/geo/plane_test.go b/geo/plane_test.go index 19dec2e..dbe6981 100644 --- a/geo/plane_test.go +++ b/geo/plane_test.go @@ -10,13 +10,13 @@ func TestPlane_PlaneFromPoints(t *testing.T) { points [3]glm.Vec3 plane Plane }{ - /*{ // 0. up, above 0,0,0 - points: [3]glm.Vec3{glm.Vec3{0, 1, 0}, glm.Vec3{0, 1, 1}, glm.Vec3{1, 1, 0}}, - plane: Plane{ - N: glm.Vec3{0, 1, 0}, - D: 1, - }, - },*/ + /*{ // 0. up, above 0,0,0 + points: [3]glm.Vec3{glm.Vec3{0, 1, 0}, glm.Vec3{0, 1, 1}, glm.Vec3{1, 1, 0}}, + plane: Plane{ + N: glm.Vec3{0, 1, 0}, + D: 1, + }, + },*/ } for i, test := range tests { diff --git a/geo/quickhull.go b/geo/quickhull.go index 5144e9d..13cb082 100644 --- a/geo/quickhull.go +++ b/geo/quickhull.go @@ -2,9 +2,9 @@ package geo import ( "fmt" + "github.com/EngoEngine/math" "github.com/engoengine/glm" "github.com/engoengine/glm/geo/internal/qhull" - "github.com/EngoEngine/math" ) // Quickhull returns the convex hull of the given points. diff --git a/geo/sphere.go b/geo/sphere.go index 6e1e561..7bcab29 100644 --- a/geo/sphere.go +++ b/geo/sphere.go @@ -1,8 +1,8 @@ package geo import ( - "github.com/engoengine/glm" "github.com/EngoEngine/math" + "github.com/engoengine/glm" ) // Sphere is a bounding volume for spheres. diff --git a/geo/utils.go b/geo/utils.go index 20fd9c3..e80631e 100644 --- a/geo/utils.go +++ b/geo/utils.go @@ -1,9 +1,9 @@ package geo import ( + "github.com/EngoEngine/math" "github.com/engoengine/glm" "github.com/engoengine/glm/flops/32/flops" - "github.com/EngoEngine/math" ) // IsConvexQuad returns true if the qualidrateral is convex. diff --git a/glmtesting/testing.go b/glmtesting/testing.go index 7b887cc..80e1bbd 100644 --- a/glmtesting/testing.go +++ b/glmtesting/testing.go @@ -1,9 +1,9 @@ package glmtesting import ( + "github.com/EngoEngine/math" "github.com/engoengine/glm" "github.com/engoengine/glm/flops/32/flops" - "github.com/EngoEngine/math" ) // FloatEqual returns true if v0 == v1 for every component. Will also return true diff --git a/glmtesting/testing_test.go b/glmtesting/testing_test.go index 70d70d3..fcadbac 100644 --- a/glmtesting/testing_test.go +++ b/glmtesting/testing_test.go @@ -1,8 +1,8 @@ package glmtesting import ( - "github.com/engoengine/glm" "github.com/EngoEngine/math" + "github.com/engoengine/glm" "testing" )