首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >低摆线动画matplotlib - python

低摆线动画matplotlib - python
EN

Stack Overflow用户
提问于 2018-10-12 11:17:22
回答 1查看 1.1K关注 0票数 0

我试图从维基百科制作这个动画,然而,我很难弄清楚如何做到这一点。基本上,我需要做两件事:

  1. 将所有的图形绘制在一个框架中。
  2. 绘制最大圆并保持它,然后绘制最小圆和次摆线点。但是,我也需要保留下摆线的点,并更新最小圆的位置。

这是我的代码,但是我得到了十个不同的帧

代码语言:javascript
运行
AI代码解释
复制
import numpy as np
import matplotlib.pyplot as plt
R=3 #Biggest circle radius =3
r=1 #smallest circle radius =1
t=np.linspace(0, 2*np.pi,100) # values from zero to 360 degrees
i=0

xc1=R*np.cos(t) #biggest circle
yc1=R*np.sin(t) #biggest circle
plt.plot(xc1,yc1)

while i<=2*np.pi:
    x=(R-r)*np.cos(i)+r*np.cos((R-r)*i/r) #x values of the hypocycloid
    y=(R-r)*np.sin(i)-r*np.sin((R-r)*i/r)#y value of the hypocycloid
    plt.plot(x,y)  
    i+=2*np.pi/10 

    plt.show()

先谢谢你。

EN

回答 1

Stack Overflow用户

发布于 2018-10-13 07:10:45

这里有一个完整的例子,使用OP链接到的维基百科页面中给出的方程。由于有相当多的变量需要跟踪,所以我认为最好在一个类中收集所有的内容。

代码语言:javascript
运行
AI代码解释
复制
from matplotlib import pyplot as plt
from matplotlib.animation import FuncAnimation
import numpy as np


class Hypocycloid:

    def __init__(self, ratio = 3, frames = 100, ncycles = 1):
        self.frames = frames
        self.ncycles = ncycles
        self.fig, self.ax = plt.subplots()
        self.ax.set_aspect('equal')

        ##big circle:
        theta = np.linspace(0,2*np.pi,100)
        x = np.cos(theta)
        y = np.sin(theta)

        self.big_circle, = self.ax.plot(x,y,'b-')

        ##small circle:
        self.small_r = 1./ratio
        r = self.small_r
        x = r*np.cos(theta)+1-r
        y = r*np.sin(theta)
        self.small_circle, = self.ax.plot(x,y,'k-')

        ##line and dot:
        self.line, = self.ax.plot([1-r,1],[0,0],'k-')
        self.dot, = self.ax.plot([1-r],[0], 'ko', ms=5)
        ##hypocycloid:
        self.hypocycloid, = self.ax.plot([],[],'r-')


        self.animation = FuncAnimation(
            self.fig, self.animate,
            frames=self.frames*self.ncycles,
            interval=50, blit=False,
            repeat_delay=2000,
        )


    def update_small_circle(self, phi):
        theta = np.linspace(0,2*np.pi,100)
        x = self.small_r*np.cos(theta)+(1-self.small_r)*np.cos(phi)
        y = self.small_r*np.sin(theta)+(1-self.small_r)*np.sin(phi)
        self.small_circle.set_data(x,y)


    def update_hypocycloid(self, phis):
        r = self.small_r
        x = (1-r)*np.cos(phis)+r*np.cos((1-r)/r*phis)
        y = (1-r)*np.sin(phis)-r*np.sin((1-r)/r*phis)
        self.hypocycloid.set_data(x,y)

        center = [(1-r)*np.cos(phis[-1]), (1-r)*np.sin(phis[-1])]

        self.line.set_data([center[0],x[-1]],[center[1],y[-1]])
        self.dot.set_data([center[0]], [center[1]])

    def animate(self, frame):
        frame = frame+1
        phi = 2*np.pi*frame/self.frames
        self.update_small_circle(phi)
        self.update_hypocycloid(np.linspace(0,phi,frame))

hypo = Hypocycloid(ratio=3.25, frames = 40, ncycles=4)

##un-comment the next line, if you want to save the animation as gif:
##hypo.animation.save('hypocycloid.gif', writer='imagemagick', fps=10, dpi=75)

plt.show()

可以传递给Hypocycloid类的参数是ratio (相对于大圆的小圆半径)、frames (围绕大圆的一次行程的帧数)和ncycles (trips数)。ratio=3.25frames=40ncycles=4的最终结果如下所示:

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/52785764

复制
相关文章
WPF TextBox搜索框&自定义TextBox样式
首先要做搜索框当然要有一个搜索的图标啦,幸运的是,fontawesome里面有的~
zls365
2021/04/02
4.8K0
WPF滑块控件(Slider)的自定义样式
点击确定后,我们的页面的Resources中,增加了一系列样式代码,而滑块代码会被修改为如下样子:
Kiba518
2019/08/02
3.8K0
WPF 自定义键盘焦点样式(FocusVisualStyle)
2017-12-17 07:34
walterlv
2018/09/18
1.5K0
WPF 自定义键盘焦点样式(FocusVisualStyle)
WPF 自定义键盘焦点样式(FocusVisualStyle)
发布于 2017-12-17 15:34 更新于 2018-12-14 01:54
walterlv
2020/02/10
8680
WPF --- 如何重写WPF原生控件样式?
上一篇中 WPF --- 重写圆角DataGrid样式,因新产品UI需要,重写了一下微软 「WPF」 原生的 DataGrid 的样式,包含如下内容:
Niuery Diary
2023/10/22
5420
WPF --- 如何重写WPF原生控件样式?
WPF全局样式设置
/Resources/OverwrideDefaultControlStyles.xaml
码客说
2021/07/30
1.6K0
WPF 修改CheckBox样式
它包含一个复选框(ToggleButton)和一个文(Content),改写它,要做的就是修改它们的模板了~
zls365
2021/04/02
2.8K0
WPF常用样式配置
窗口 边界阴影 <Window.Effect> <DropShadowEffect BlurRadius="10" Direction="80" ShadowDepth="0" Color="#f3f3f3" /> </Window.Effect> Border 内部裁剪的Border using System; using System.Windows; using System.Windows.Controls; using Sys
码客说
2021/07/19
3030
WPF获取原始控件样式。
要获取WPF控件的原始样式,需要我们安装Blend for Visual Studio。
Kiba518
2018/12/04
1.3K0
WPF获取原始控件样式。
WPF TextBox使用密码样式
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/161458.html原文链接:https://javaforall.cn
全栈程序员站长
2022/09/15
9040
WPF --- 重写圆角DataGrid样式
因要符合UI设计, 需要一个圆角的 DataGrid 样式,且需要一个更美观的滚动条,所以重写了一下微软 「WPF」 原生的 DataGrid 的样式,包含如下内容:
Niuery Diary
2023/10/22
6950
WPF --- 重写圆角DataGrid样式
默认的WPF样式在哪里
首先查找指定类型所在的程序集(例如Button所在的PresentationFramework),如果程序集定义了ThemeInfo
黄腾霄
2020/06/10
7170
使用通用附加属性来减少 WPF 元素自定义样式的多余代码
使用通用附加属性来减少 WPF 元素自定义样式的多余代码 魏刘宏 2022 年 11 月 07 日 本文将以WPFUI(https://gitee.com/dlgcy/WPFUI)项目中的 ComboBox样式为例,介绍如何使用附加属性来增强和简化样式代码。
独立观察员
2022/12/31
2K0
使用通用附加属性来减少 WPF 元素自定义样式的多余代码
WPF XAML 为项目设置全局样式
正确的做法是封装统一风格的所有控件。 (例如按钮,统一高宽,字体,字体大小,然后申明到独立的资源字典中, 在App.xaml中引用)
zls365
2021/10/19
1.8K0
自定义 WordPress 样式
修改页面头部、脚部的文件路径:wp-content ——》themes ——》twentyten ——》footer.php、header.php
阳光岛主
2019/02/19
1.6K0
自定义 WordPress 样式
自定义MessageBox样式
1.自定义MessageBox的弹框样式展示 2.代码片段 static private void BuildMessageBox(string title) { newMessageBox = new MsgAlert(); newMessageBox.Text = title; newMessageBox.Size = new System.Drawing.Size(400, 200);
十分钟空间
2022/08/17
9320
自定义MessageBox样式
WPF基础入门--样式的继承及使用
然后我们定义两个继承自它的样式,分别为对应按钮baseButtonStyle1和baseButtonStyle2的样式:
zls365
2021/01/28
1.1K0
自定义 Discuz 样式
discuz根目录——》template——》default——》forum——》discuz.htm
阳光岛主
2019/02/19
2.3K0
自定义 Discuz 样式
WPF自定义路由事件
public static readonly RoutedEvent ButtonClickEvent = EventManager.RegisterRoutedEvent
kiki.
2022/09/29
4970
WPF自定义路由事件
WPF自定义控件创建
其中CS文件,就是我们需要编写的自定义控件,里面的类继承了Control类;而Themes则存放该控件的样式。即,WPF自定义控件,是通过样式给我们的编辑的控件类披上外衣而形成的。
Kiba518
2019/01/28
2K0

相似问题

rake db:migrate返回错误rake db:migrate

20

如何判断rake db:migrate和rake db:seed是否成功

13

是rake db:create和rake db:migrate幂等吗?

14

如何使用rake db:migrate

30

rbenv、JRuby、Warble、Rake

10
添加站长 进交流群

领取专属 10元无门槛券

AI混元助手 在线答疑

扫码加入开发者社群
关注 腾讯云开发者公众号

洞察 腾讯核心技术

剖析业界实践案例

扫码关注腾讯云开发者公众号
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
查看详情【社区公告】 技术创作特训营有奖征文