Skip to content

Commit 577c8d4

Browse files
committed
renaming
1 parent b8dcd37 commit 577c8d4

File tree

9 files changed

+8
-7
lines changed

9 files changed

+8
-7
lines changed

src/Spiders.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module Spiders
22
export treeplot
3+
export EmbeddedHubbardTree
34
include("trees/ShowTree.jl")
45
# Write your package code here.
56

src/parameters/DynamicRays.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
include("../sequences/AngleDoubling.jl")
2-
include("../spiders/SpiderFuncs.jl")
2+
include("../spidermap/SpiderFuncs.jl")
33

44
struct ExternalRays
55
orb::Sequence{Rational}

src/parameters/MandelbrotSet.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
include("RenderFractal.jl")
2-
include("../spiders/Spiders.jl")
2+
include("../spidermap/SpiderMap.jl")
33
include("../trees/OrientTrees.jl")
44
using ColorSchemes
55

src/spiders/ShowSpider.jl renamed to src/spidermap/ShowSpider.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using GLMakie
22
using ColorSchemes
3-
include("Spiders.jl")
3+
include("SpiderMap.jl")
44

55
@recipe(SpiderPlot,S) do scene
66
Theme()
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/trees/EmbedTrees.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
include("OrientTrees.jl")
2-
include("../spiders/Spiders.jl")
2+
include("../spidermap/SpiderMap.jl")
33
include("../parameters/DynamicRays.jl")
44

55
struct EmbeddedHubbardTree

src/trees/ShowTree.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using GLMakie
22
using ColorSchemes
33
include("EmbedTrees.jl")
4-
include("../spiders/Spiders.jl")
4+
include("../spidermap/SpiderMap.jl")
55
include("../parameters/DynamicRays.jl")
66
include("../parameters/RenderFractal.jl")
77

@@ -10,8 +10,8 @@ include("../parameters/RenderFractal.jl")
1010
end
1111

1212
function Makie.plot!(myplot::TreePlot)
13-
(EdgeList,Nodes) = adjlist(EHT.adj)
14-
criticalorbit = orbit(EHT.zero)
13+
(EdgeList,Nodes) = adjlist(myplot.EHT[].adj)
14+
criticalorbit = orbit(myplot.EHT[].zero)
1515

1616
labels = []
1717
nodecolors = []

0 commit comments

Comments
 (0)