File tree Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ version = "0.5.10"
5
5
6
6
[deps ]
7
7
EarCut_jll = " 5ae413db-bbd1-5e63-b57d-d24a61df00f5"
8
- IterTools = " c8e1da08-722c-5040-9ed9-7db0dc04731e"
9
8
LinearAlgebra = " 37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
10
9
PrecompileTools = " aea7be01-6a6a-4083-8856-8a6e6704d82a"
11
10
Random = " 9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
@@ -25,7 +24,6 @@ EarCut_jll = "2"
25
24
Extents = " 0.1"
26
25
GeoInterface = " 1.0.1"
27
26
GeoJSON = " 0.7, 0.8"
28
- IterTools = " 1.3.0"
29
27
LinearAlgebra = " <0.0.1,1"
30
28
OffsetArrays = " 1"
31
29
PrecompileTools = " 1.0"
Original file line number Diff line number Diff line change 1
1
module GeometryBasics
2
2
3
- using IterTools, LinearAlgebra, StaticArrays
3
+ using LinearAlgebra, StaticArrays
4
4
using EarCut_jll
5
5
import Base: *
6
6
Original file line number Diff line number Diff line change 67
67
68
68
function texturecoordinates (:: Sphere , nvertices= 24 )
69
69
ux = LinRange (0 , 1 , nvertices)
70
- return ivec ((( φ, θ) for θ in reverse (ux), φ in ux))
70
+ return (( φ, θ) for φ in ux for θ in reverse ( ux))
71
71
end
72
72
73
73
function faces (:: Sphere , nvertices= 24 )
You can’t perform that action at this time.
0 commit comments