放置奇兵 新 粉石墨
生活随笔
收集整理的這篇文章主要介紹了
放置奇兵 新 粉石墨
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
# 假設我方英雄當前血量為a%,粉石墨單次抵消的傷害為生命上限b(粉1為0.67,粉3為0.8,最高不超過當前生命值的百分之百),
# 此時受到相當于生命上限c%的單次傷害,求余下的生命值d?(單位:%)from matplotlib import pyplot as plt # 用來繪制圖形
from mpl_toolkits.mplot3d import Axes3D
import numpy as np# 粉1石墨
# b = 0.67
# 粉3石墨
b = 0.8A, C, D = [], [], []for a in range(0, 100, 1):for c in range(0, 300, 1):# 抵消的不超過當前生命值百分之百if c * b < a:d = a - (c - c * b)# 抵消的超過當前生命值百分之百else:d = a - (c - c * b) - (c * b - a)A.append(a)C.append(c)D.append(d)# print("英雄當前生命值:{}%,受擊:{}%,剩余生命值:{}%".format(a, c, d))A = np.array(A).reshape(100, 300)
C = np.array(C).reshape(100, 300)
D = np.array(D).reshape(100, 300)# H = np.zeros((100, 300))
H = 0*A + 0*Cfig = plt.gcf() # 獲取當前圖
ax = fig.gca(projection='3d') # 獲取當前軸ax.plot_surface(A, C, D, cmap='rainbow')
# ax.plot_surface(A, C, H, cmap='winter_r')# 添加坐標軸(順序是Z, Y, X)
ax.set_zlabel('Remaining health(%)', fontdict={'size': 15, 'color': 'red'})
ax.set_ylabel('Hit(%)', fontdict={'size': 15, 'color': 'red'})
ax.set_xlabel('Current health(%)', fontdict={'size': 15, 'color': 'red'})plt.show()
運行結果:
[外鏈圖片轉存中…(img-ELOGnfRY-1626920883496)]
不過貌似不是以當前生命值100%作為標準的,是以生命中上限作為標準
總結
以上是生活随笔為你收集整理的放置奇兵 新 粉石墨的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【编译原理】让我们来构建一个简单的解释器
- 下一篇: C语言如何使用其他文件定义的结构体?(C