资源简介
用python画一个立体的心,代码很简单,认真看看很快就会了,小白程序员必备zb图,可以给朋友秀一秀
代码片段和文件信息
#!/usr/bin/env python3
from mpl_toolkits.mplot3d import Axes3D
from matplotlib import cm
from matplotlib.ticker import LinearLocator FormatStrFormatter
import matplotlib.pyplot as plt
import numpy as np
def heart_3d(xyz):
return (x**2+(9/4)*y**2+z**2-1)**3-x**2*z**3-(9/80)*y**2*z**3
def plot_implicit(fn bbox=(-1.5 1.5)):
‘‘‘ create a plot of an implicit function
fn ...implicit function (plot where fn==0)
bbox ..the xyand z limits of plotted interval‘‘‘
xmin xmax ymin ymax zmin zmax = bbox*3
fig = plt.figure()
ax = fig.add_subplot(111 projection=‘3d‘)
A = np.linspace(xmin xmax 100) # resolution of the contour
B = np.linspace(xmin xmax 40) # number of slices
A1 A2 = np.meshgrid(A A) # grid on which the contour is plotted
for z in B: # plot contours in the XY
相关资源
- Python wordcloud3.7whl
- python单纯形法解线性规划问题
- python读取las数据.zip
- python基础题库新手必学
- 基于Python的SVM模块源代码
- Python制造动态二维码
- python解析SA雷达数据
- Python 贪吃蛇
- 一个线性回归的
- python36实现打外星人小游戏图形界面游
- BP算法Python代码
- python管道小鸟游戏
- python图像处理三维重建所有代码
- treePlotter
- 天猫评论爬虫
- 股票爬取python
- python量化金融项目视频教程
- 基于朴素贝叶斯实现的文本分类
- 单纯形法python
- Python实现简单遗传,粒子群,蚁群,
- 在 VisualStudio 2017环境下使用Python之爬
- python实现图片拼接
- 调用python接口使用googlenet进行图像识
- 最详细神经网络python描写附注释
- Pygame——AI重力四子棋
- 基于Python的计算机网络实验设计
- 西电数据挖掘作业——k中心聚类pyt
- python实现SVM
- 老男孩python全栈开发学习笔记文字整
- python3 HTMLTestRunner截图&美化&优化
评论
共有 条评论