翼度科技»论坛 编程开发 python 查看内容

利用Python实现绘制3D爱心的代码分享

3

主题

3

帖子

9

积分

新手上路

Rank: 1

积分
9
环境介绍

python3.8
numpy
matplotlib
一、绘制一个三维的爱心

关于这一步,我采用的是大佬博客中的最后一种绘制方法。当然,根据我的代码习惯,我还是稍做了一点点修改的。
  1. class Guess:
  2.     def __init__(self, bbox=(-1.5, 1.5), resolution=50, lines=20) -> None:
  3.         """
  4.         bbox: 控制画格的大小
  5.         resolution: 控制爱心的分辨率
  6.         lines: 控制等高线的数量
  7.         """
  8.         self.xmin, self.xmax, self.ymin, self.ymax, self.zmin, self.zmax = bbox*3
  9.         A = np.linspace(self.xmin, self.xmax, resolution)
  10.         self.B = np.linspace(self.xmin, self.xmax, lines)
  11.         self.A1, self.A2 = np.meshgrid(A, A)
  12.         
  13.     def coordinate(self, x, y, z):
  14.         """
  15.         生成坐标
  16.         """
  17.         return (x**2+(9/4)*y**2+z**2-1)**3-x**2*z**3-(9/80)*y**2*z**3
  18.     def draw(self, ax):
  19.         """
  20.         绘制坐标
  21.         """
  22.         for z in self.B:
  23.             X, Y = self.A1, self.A2
  24.             Z = self.coordinate(X, Y, z)+z
  25.             cset = ax.contour(X, Y, Z, [z], zdir='z', colors=('pink',))
  26.         for y in self.B:
  27.             X, Z = self.A1, self.A2
  28.             Y = self.coordinate(X, y, Z)+y
  29.             cset = ax.contour(X, Y, Z, [y], zdir='y', colors=('pink',))
  30.         for x in self.B:
  31.             Y, Z = self.A1, self.A2
  32.             X = self.coordinate(x, Y, Z) + x
  33.             cset = ax.contour(X, Y, Z, [x], zdir='x', colors=('pink',))
  34.     def run(self):
  35.         fig = plt.figure()
  36.         ax = fig.add_subplot(projection='3d')
  37.         ax.set_zlim3d(self.zmin, self.zmax)
  38.         ax.set_xlim3d(self.xmin, self.xmax)
  39.         ax.set_ylim3d(self.ymin, self.ymax)
  40.         plt.show()
复制代码
但是这可以达到我们想要的效果吗?
显然不能!于是我们开始加入亿点点细节!
二、细节点

1.加入时间序列

想要心脏跳起来,我们就需要有时间维度的变化。那怎么做最合理呢?这里仅展示修改的代码位置。
代码如下(示例):
  1. class Guess:
  2.     def __init__(self, bbox=(-1.5, 1.5), resolution=50, lines=20) -> None:
  3.         plt.ion()                                         # 开启画布的动态图模式
  4.         self.xmin, self.xmax, self.ymin, self.ymax, self.zmin, self.zmax = bbox*3
  5.         self.time = time.time()                           # 这里有一个衡量的时间坐标,很合理吧
  6.         A = np.linspace(self.xmin, self.xmax, resolution)
  7.         self.B = np.linspace(self.xmin, self.xmax, lines)
  8.         self.A1, self.A2 = np.meshgrid(A, A)
  9.     def run(self, count):
  10.         """
  11.         加入count是我们想循环的次数
  12.         """
  13.         fig = plt.figure()
  14.         for i in range(count):
  15.             plt.clf()                               # 每次清除画布
  16.             ax = fig.add_subplot(projection='3d')
  17.             ax.set_zlim3d(self.zmin, self.zmax)
  18.             ax.set_xlim3d(self.xmin, self.xmax)
  19.             ax.set_ylim3d(self.ymin, self.ymax)
  20.             times = time.time()-self.t/ime          # 计算画布的当前时间状态
  21.             self.draw(ax, coef)
  22.             plt.show()
复制代码
 
2.加入心脏的跳动

心脏的跳动当然不会是线性的了,我们需要心脏的跳动是有层次感的,并且还是可以做往返运动的。
emmmmm… 这么说来,cos是不是就是做这个用的?
于是…
代码如下(示例):
  1. def __init__(self, bbox=(-1.5, 1.5), resolution=50, lines=20, scale=1.2) ->
  2. None:
  3.         """
  4.         scale: 心脏缩放的系数
  5.         """
  6.         self.xmin, self.xmax, self.ymin, self.ymax, self.zmin, self.zmax = bbox*3
  7.         plt.ion()
  8.         self.scale = scale   # scale: 心脏缩放的系数 设置为全局变量
  9.         self.time = time.time()
  10.         A = np.linspace(self.xmin, self.xmax, resolution)
  11.         self.B = np.linspace(self.xmin, self.xmax, lines)
  12.         self.A1, self.A2 = np.meshgrid(A, A)
  13.     def draw(self, ax, coef):
  14.         """
  15.         coef: 使得心脏可以按照时间跳动
  16.         """
  17.         for z in self.B:
  18.             X, Y = self.A1, self.A2
  19.             Z = self.coordinate(X, Y, z)+z
  20.             cset = ax.contour(X * coef, Y * coef, Z * coef, [z * coef], zdir='z', colors=('pink',))
  21.         for y in self.B:
  22.             X, Z = self.A1, self.A2
  23.             Y = self.coordinate(X, y, Z)+y
  24.             cset = ax.contour(X * coef, Y * coef, Z * coef, [y * coef], zdir='y', colors=('pink',))
  25.         for x in self.B:
  26.             Y, Z = self.A1, self.A2
  27.             X = self.coordinate(x, Y, Z) + x
  28.             cset = ax.contour(X * coef, Y * coef, Z * coef, [x * coef], zdir='x', colors=('pink',))
  29.     def run(self, count):
  30.         """
  31.         加入count是我们想循环的次数
  32.         """
  33.         fig = plt.figure()
  34.         for i in range(count):
  35.             plt.clf()                               # 每次清除画布
  36.             ax = fig.add_subplot(projection='3d')
  37.             ax.set_zlim3d(self.zmin, self.zmax)
  38.             ax.set_xlim3d(self.xmin, self.xmax)
  39.             ax.set_ylim3d(self.ymin, self.ymax)
  40.             times = time.time()-self.time
  41.             coef = np.cos(times) * (self.scale-1) + 1
  42.             # coef 是用来放缩心脏的大小的,加入cos来使它有节奏的跳动
  43.             self.draw(ax, coef)
  44.             plt.pause(0.01)
  45.             plt.show()
复制代码
很好,这样我们就有了一个可以跳动的心脏,那么到这结束了嘛?
 一个好的展示

当然没有!我们希望对象看到的时候他稍微有点东西,所以让它跳动却不能改变方向,岂不是看的不够全面?所以我们在加最后亿点点细节:
 
  1.     def run(self, count):
  2.         fig = plt.figure()
  3.         for i in range(count):
  4.             plt.clf()
  5.             ax = fig.add_subplot(projection='3d')
  6.             ax.set_title("你对象的名字?")              # 加上你对象的小name
  7.             ax.set_zlim3d(self.zmin, self.zmax)
  8.             ax.set_xlim3d(self.xmin, self.xmax)
  9.             ax.set_ylim3d(self.ymin, self.ymax)
  10.             times = time.time()-self.time
  11.             ax.view_init(10, 100+np.cos(times) * 10)   # 让三维坐标图可以变换坐标展示
  12.             coef = np.cos(times) * (self.scale-1) + 1
  13.             self.draw(ax, coef)
  14.             plt.pause(0.01)  # 让绘制出来的心脏可以显示
  15.             plt.show()
复制代码
完整代码
  1. import time
  2. import numpy as np
  3. import matplotlib.pyplot as plt
  4. class Guess:
  5.     def __init__(self, bbox=(-1.5, 1.5), resolution=50, lines=20, scale=1.2) -> None:
  6.         self.xmin, self.xmax, self.ymin, self.ymax, self.zmin, self.zmax = bbox*3
  7.         plt.ion()
  8.         self.scale = scale
  9.         self.time = time.time()
  10.         A = np.linspace(self.xmin, self.xmax, resolution)
  11.         self.B = np.linspace(self.xmin, self.xmax, lines)
  12.         self.A1, self.A2 = np.meshgrid(A, A)
  13.         Python交流群:748989764
  14.     def coordinate(self, x, y, z):
  15.         return (x**2+(9/4)*y**2+z**2-1)**3-x**2*z**3-(9/80)*y**2*z**3
  16.     def draw(self, ax, coef):
  17.         for z in self.B:
  18.             X, Y = self.A1, self.A2
  19.             Z = self.coordinate(X, Y, z)+z
  20.             cset = ax.contour(X * coef, Y * coef, Z * coef, [z * coef], zdir='z', colors=('pink',))
  21.         for y in self.B:
  22.             X, Z = self.A1, self.A2
  23.             Y = self.coordinate(X, y, Z)+y
  24.             cset = ax.contour(X * coef, Y * coef, Z * coef, [y * coef], zdir='y', colors=('pink',))
  25.         for x in self.B:
  26.             Y, Z = self.A1, self.A2
  27.             X = self.coordinate(x, Y, Z) + x
  28.             cset = ax.contour(X * coef, Y * coef, Z * coef, [x * coef], zdir='x', colors=('pink',))
  29.     def run(self, count):
  30.         fig = plt.figure()
  31.         for i in range(count):
  32.             plt.clf()
  33.             ax = fig.add_subplot(projection='3d')
  34.             ax.set_title("2LiuYu")
  35.             ax.set_zlim3d(self.zmin, self.zmax)
  36.             ax.set_xlim3d(self.xmin, self.xmax)
  37.             ax.set_ylim3d(self.ymin, self.ymax)
  38.             times = time.time()-self.time
  39.             ax.view_init(10, 100+np.cos(times) * 10)
  40.             coef = np.cos(times) * (self.scale-1) + 1
  41.             self.draw(ax, coef)
  42.             plt.pause(0.01)
  43.             plt.show()
  44. if __name__ == '__main__':
  45.     demo = Guess()
  46.     demo.run(1000)
复制代码

 
 
[code][/code]
来源:https://www.cnblogs.com/liuliumei/p/17231002.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具