usingMakieLayoutusingAnimations# plot to all axes using an array comprehensionusingAbstractPlotting# scene setup for animationcontainer_scene=Scene(camera=campixel!,resolution=(1200,1200))t=Node(0.0)a_width=Animation([1,7],[1200.0,800],sineio(n=2,yoyo=true,postwait=0.5))a_height=Animation([2.5,8.5],[1200.0,800],sineio(n=2,yoyo=true,postwait=0.5))scene_area=lift(t)dotIRect(0,0,round(Int,a_width(t)),round(Int,a_height(t)))endscene=Scene(container_scene,scene_area,camera=campixel!)rect=poly!(scene,scene_area,raw=true,color=RGBf0(0.97,0.97,0.97),strokecolor=:transparent,strokewidth=0)[end]outer_layout=GridLayout(scene,alignmode=Outside(30))# example begins herelayout=outer_layout[1,1]=GridLayout()titles=["aspect via layout","axis aspect","no aspect","data aspect"]axs=layout[1:2,1:2]=[LAxis(scene,title=t)fortintitles][lines!(a,Circle(Point2f0(0,0),100f0))forainaxs]rowsize!(layout,1,Fixed(400))# force the layout cell [1, 1] to be squarecolsize!(layout,1,Aspect(1,1))axs[2].aspect=1axs[4].autolimitaspect=1rects=layout[1:2,1:2]=[LRect(scene,color=(:black,0.05),strokecolor=:transparent)for_in1:4]record(container_scene,"output.mp4",0:1/60:9;framerate=60)dotit[]=tiend