Skip to content

Commit 190244c

Browse files
committed
adapt to SciML indexing change
1 parent 458aaf7 commit 190244c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tutorials/working-in-charts.qmd

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,9 @@ bvp_i = (0, 0)
188188
bvp_a1 = [θ₁, φ₁]
189189
bvp_a2 = [θ₂, φ₂]
190190
# bvp_sol = Manifolds.solve_chart_log_bvp(M, bvp_a1, bvp_a2, A, bvp_i);
191-
# geo_r = [Point3f(get_point(M, A, bvp_i, p[1:2])) for p in bvp_sol(0.0:0.05:1.0)]
191+
# pts_interp = collect(bvp_sol(0.0:0.05:1.0; idxs=1:2))
192+
# geo_r = [Point3f(get_point(M, A, bvp_i, p[1:2])) for p in eachcol(pts_interp)]
193+
192194
193195
# ax2, fig2 = torus_figure()
194196
# lines!(geo_r; linewidth=4.0, color=:green)

0 commit comments

Comments
 (0)