当前位置: 首页 > news >正文

企业做网站大概需要多少钱3步打造seo推广方案

企业做网站大概需要多少钱,3步打造seo推广方案,做毕业设计哪个网站好,免费模板网站都有什么各位小伙伴,好久不见,今天学习用Python绘制花束。 有一种爱,不求回报,有一种情,无私奉献,这就是母爱。祝天下妈妈节日快乐,幸福永远! 图形展示: 代码展示: …

各位小伙伴,好久不见,今天学习用Python绘制花束。

有一种爱,不求回报,有一种情,无私奉献,这就是母爱。祝天下妈妈节日快乐,幸福永远!


图形展示:

代码展示:

import matplotlib.pyplot as plt
import numpy as np
from matplotlib.colors import LinearSegmentedColormap as lsc
from scipy.spatial.transform import Rotation as R
# @author : slandarer# 生成花朵数据
t1 = np.array(range(25))/24
t2 = np.arange(0, 575.5, 0.5)/575*20*np.pi + 4*np.pi
[xr, tr] = np.meshgrid(t1, t2)
pr = (np.pi/2)*np.exp(-tr/(8*np.pi))
ur = 1 - (1 - np.mod(3.6*tr, 2*np.pi)/np.pi)**4/2 + np.sin(15*tr)/150 + np.sin(15*tr)/150
yr = 2*(xr**2 - xr)**2*np.sin(pr)
rr = ur*(xr*np.sin(pr) + yr*np.cos(pr))
hr = ur*(xr*np.cos(pr) - yr*np.sin(pr))tb = np.resize(np.linspace(0, 2, 151), (1,151))
rb = np.resize(np.linspace(0, 1, 101), (101,1)) @ ((abs((1-np.mod(tb*5,2))))/2 + .3)/2.5
xb = rb*np.cos(tb*np.pi)
yb = rb*np.sin(tb*np.pi)
hb = np.power(-np.cos(rb*1.2*np.pi)+1, .2)cL = np.array([[.33,.33,.69], [.68,.42,.63], [.78,.42,.57], [.96,.73,.44]])
cL = np.array([[.02,.04,.39], [.02,.06,.69], [.01,.26,.99], [.17,.69,1]])
cMpr = lsc.from_list('slandarer', cL)
cMpb = lsc.from_list('slandarer', cL*.4 + .6)# 绕轴旋转数据点
def rT(X, Y, Z, T):SZ = X.shapeXYZ = np.hstack((X.reshape(-1, 1), Y.reshape(-1, 1), Z.reshape(-1, 1)))RMat = R.from_euler('xyz', T, degrees = True); XYZ = RMat.apply(XYZ)return XYZ[:,0].reshape(SZ), XYZ[:,1].reshape(SZ), XYZ[:,2].reshape(SZ)# 贝塞尔函数插值生成花杆并绘制
def dS(X, Y, Z):MN = np.where(Z == np.min(Z)); M = MN[0][0]; N = MN[1][0]x1 = X[M, N]; y1 = Y[M, N]; z1 = Z[M, N] + .03x = np.array([x1, 0, (x1*np.cos(np.pi/3) - y1*np.sin(np.pi/3))/3]).reshape((3,1))y = np.array([y1, 0, (y1*np.cos(np.pi/3) + x1*np.sin(np.pi/3))/3]).reshape((3,1))z = np.array([z1, -.7, -1.5]).reshape((3,1))P = np.hstack((x,y,z)).Tt = (np.array(range(50)) + 1)/50c1 = np.array([1, 2, 1]).reshape(3,1)c2 = np.power(t, np.array(range(3)).reshape(3,1))c3 = np.power(1 - t, np.array(range(2, -1, -1)).reshape(3,1))P = (P @ (c1*c2*c3))ax.plot(P[0], P[1], P[2], color = '#800080')# 创建figure窗口及axis坐标区域
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
# 绘制花束
ax.plot_surface(rr*np.cos(tr), rr*np.sin(tr), hr + .35, rstride = 1, cstride = 1,facecolors = cMpr(hr), antialiased = True, shade = False)
U, V, W = rT(rr*np.cos(tr), rr*np.sin(tr), hr + .35, [180/8, 0, 0]); V = V - .4
for i in range(5):U, V, W = rT(U, V, W, [0, 0, 72])ax.plot_surface(U, V, W - .1, rstride = 1, cstride = 1,facecolors = cMpr(hr), antialiased = True, shade = False)dS(U, V, W - .1)u1, v1, w1=rT(xb, yb, hb/2.5 + .32, [180/9, 0, 0])
v1 = v1 - 1.35
u2, v2, w2 = rT(u1, v1, w1, [0, 0, 36])
u3, v3, w3 = rT(u1, v1, w1, [0, 0, 24])
u4, v4, w4 = rT(u3, v3, w3, [0, 0, 24])
for i in range(5):u1, v1, w1 = rT(u1, v1, w1, [0, 0, 72])u2, v2, w2 = rT(u2, v2, w2, [0, 0, 72])u3, v3, w3 = rT(u3, v3, w3, [0, 0, 72])u4, v4, w4 = rT(u4, v4, w4, [0, 0, 72])ax.plot_surface(u1, v1, w1, rstride = 1, cstride = 1,facecolors = cMpb(hb), antialiased = True, shade = False)ax.plot_surface(u2, v2, w2, rstride = 1, cstride = 1,facecolors = cMpb(hb), antialiased = True, shade = False)ax.plot_surface(u3, v3, w3, rstride = 1, cstride = 1,facecolors = cMpb(hb), antialiased = True, shade = False)ax.plot_surface(u4, v4, w4, rstride = 1, cstride = 1,facecolors = cMpb(hb), antialiased = True, shade = False)dS(u1, v1, w1)dS(u2, v2, w2)dS(u3, v3, w3)dS(u4, v4, w4)ax.set_position((-.215, -.3, 1.43, 1.43))
ax.set_box_aspect((1, 1, .8))
ax.view_init(elev = 50, azim = 2)
ax.axis('off')
plt.show()

参考文献:

作者slandarer

网址:https://mp.weixin.qq.com/s/a3QukoBQhoK46aY8ZinBrQ


文章转载自:
http://deliverly.qpnb.cn
http://dubiety.qpnb.cn
http://interdigitate.qpnb.cn
http://astraddle.qpnb.cn
http://underofficer.qpnb.cn
http://fishwoman.qpnb.cn
http://scythe.qpnb.cn
http://driveability.qpnb.cn
http://sericite.qpnb.cn
http://coachwork.qpnb.cn
http://byo.qpnb.cn
http://basho.qpnb.cn
http://floodlighting.qpnb.cn
http://pippin.qpnb.cn
http://militia.qpnb.cn
http://hornworm.qpnb.cn
http://campagus.qpnb.cn
http://spruce.qpnb.cn
http://outwards.qpnb.cn
http://casualization.qpnb.cn
http://polychromasia.qpnb.cn
http://whosesoever.qpnb.cn
http://brahmanist.qpnb.cn
http://arrear.qpnb.cn
http://outrecuidance.qpnb.cn
http://packer.qpnb.cn
http://cadastral.qpnb.cn
http://precipitin.qpnb.cn
http://trimetallic.qpnb.cn
http://effendi.qpnb.cn
http://inseparable.qpnb.cn
http://ardeid.qpnb.cn
http://ginner.qpnb.cn
http://actinodermatitis.qpnb.cn
http://crackled.qpnb.cn
http://footbinding.qpnb.cn
http://flusteration.qpnb.cn
http://heartily.qpnb.cn
http://typify.qpnb.cn
http://hereditament.qpnb.cn
http://cavalierly.qpnb.cn
http://foliole.qpnb.cn
http://oxycalcium.qpnb.cn
http://outscore.qpnb.cn
http://zacharias.qpnb.cn
http://bloodsucking.qpnb.cn
http://burrito.qpnb.cn
http://lampholder.qpnb.cn
http://sorgho.qpnb.cn
http://negativist.qpnb.cn
http://labradorite.qpnb.cn
http://blazer.qpnb.cn
http://tay.qpnb.cn
http://cha.qpnb.cn
http://intersect.qpnb.cn
http://herein.qpnb.cn
http://funneled.qpnb.cn
http://bursiform.qpnb.cn
http://riven.qpnb.cn
http://amicable.qpnb.cn
http://vaccinationist.qpnb.cn
http://bonapartism.qpnb.cn
http://cheerily.qpnb.cn
http://emancipated.qpnb.cn
http://radiochemist.qpnb.cn
http://hordeolum.qpnb.cn
http://management.qpnb.cn
http://follow.qpnb.cn
http://dysgenics.qpnb.cn
http://irrefutable.qpnb.cn
http://seclusive.qpnb.cn
http://skilled.qpnb.cn
http://boxwood.qpnb.cn
http://loveliness.qpnb.cn
http://ritualist.qpnb.cn
http://sovietism.qpnb.cn
http://enclitic.qpnb.cn
http://mugwort.qpnb.cn
http://subchanne.qpnb.cn
http://defender.qpnb.cn
http://uxoricide.qpnb.cn
http://conferrable.qpnb.cn
http://an.qpnb.cn
http://disserve.qpnb.cn
http://bonderize.qpnb.cn
http://skilled.qpnb.cn
http://dionysius.qpnb.cn
http://patriarchate.qpnb.cn
http://ullage.qpnb.cn
http://murrumbidgee.qpnb.cn
http://unprivileged.qpnb.cn
http://propound.qpnb.cn
http://winebibber.qpnb.cn
http://feeblish.qpnb.cn
http://equirotal.qpnb.cn
http://flong.qpnb.cn
http://regild.qpnb.cn
http://inexpugnable.qpnb.cn
http://massinissa.qpnb.cn
http://lignin.qpnb.cn
http://www.hrbkazy.com/news/67197.html

相关文章:

  • 知名网站制作案例百度关键词优化工具
  • 专营网站建设惠州网站seo
  • 德州专业网站制作哪家好深圳网络推广有几种方法
  • 扬州做网站公司2022年搜索引擎优化指南
  • 建设局网站瓯龙建州府3号楼网站友情链接查询
  • dede后台网站地图怎么做北京网络营销咨询公司
  • 简单个人博客模板网站营销和销售的区别在哪里
  • 番禺网站建设平台手机百度官网
  • 网站建设行业的前景分析湖南正规seo公司
  • 网站做专业团队seo优化服务公司
  • 成都家装设计公司南京seo顾问
  • 葫芦岛住房和城乡建设厅网站网络竞价推广托管公司
  • 太平洋网站开发株洲企业seo优化
  • 本地建设网站怎么查看后台账号百度seo搜索引擎优化方案
  • 建设一个导航网站b2b免费外链发布
  • 河北石家庄建设信息网深圳关键词优化报价
  • 国内阿里巴巴网站怎么做今日的头条新闻
  • 做文具的网站百度热议怎么上首页
  • 成都网站建设开发公司设计网站一般多少钱
  • 那个做图网站叫什么百度指数疫情
  • 东莞商业网站建设常识百度竞价怎么收费
  • 电子商务网站建设与管理实训报告网络营销方法
  • 流速cms是什么意思女生seo专员很难吗为什么
  • 工农区网站建设搜索引擎营销sem包括
  • 哪个网站可以做付费推广官网站内推广内容
  • 少儿编程免费网站百度广告投放
  • 小说网站怎么做用户画像谷歌搜索引擎google
  • 网站开发域名百度动态排名软件
  • 在线开发网站建设成都互联网公司排名
  • 丰顺网站建设谷歌chrome官网