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"
55
66[deps ]
77EarCut_jll = " 5ae413db-bbd1-5e63-b57d-d24a61df00f5"
8- IterTools = " c8e1da08-722c-5040-9ed9-7db0dc04731e"
98LinearAlgebra = " 37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
109PrecompileTools = " aea7be01-6a6a-4083-8856-8a6e6704d82a"
1110Random = " 9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
@@ -25,7 +24,6 @@ EarCut_jll = "2"
2524Extents = " 0.1"
2625GeoInterface = " 1.0.1"
2726GeoJSON = " 0.7, 0.8"
28- IterTools = " 1.3.0"
2927LinearAlgebra = " <0.0.1,1"
3028OffsetArrays = " 1"
3129PrecompileTools = " 1.0"
Original file line number Diff line number Diff line change 11module GeometryBasics
22
3- using IterTools, LinearAlgebra, StaticArrays
3+ using LinearAlgebra, StaticArrays
44using EarCut_jll
55import Base: *
66
Original file line number Diff line number Diff line change 6767
6868function 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))
7171end
7272
7373function faces (:: Sphere , nvertices= 24 )
You can’t perform that action at this time.
0 commit comments