Skip to content

Commit 1625e0f

Browse files
committed
remove IterTools
1 parent 1eb5f01 commit 1625e0f

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

Project.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ version = "0.5.10"
55

66
[deps]
77
EarCut_jll = "5ae413db-bbd1-5e63-b57d-d24a61df00f5"
8-
IterTools = "c8e1da08-722c-5040-9ed9-7db0dc04731e"
98
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
109
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
1110
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
@@ -25,7 +24,6 @@ EarCut_jll = "2"
2524
Extents = "0.1"
2625
GeoInterface = "1.0.1"
2726
GeoJSON = "0.7, 0.8"
28-
IterTools = "1.3.0"
2927
LinearAlgebra = "<0.0.1,1"
3028
OffsetArrays = "1"
3129
PrecompileTools = "1.0"

src/GeometryBasics.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module GeometryBasics
22

3-
using IterTools, LinearAlgebra, StaticArrays
3+
using LinearAlgebra, StaticArrays
44
using EarCut_jll
55
import Base: *
66

src/primitives/spheres.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ end
6767

6868
function texturecoordinates(::Sphere, nvertices=24)
6969
ux = LinRange(0, 1, nvertices)
70-
return ivec(((φ, θ) for θ in reverse(ux), φ in ux))
70+
return ((φ, θ) for φ in ux for θ in reverse(ux))
7171
end
7272

7373
function faces(::Sphere, nvertices=24)

0 commit comments

Comments
 (0)