爱心曲线公式大全

local r = a*((math.sin(angle) * math.sqrt(math.abs(math.cos(angle)))) / (math.sin(angle) + 1.4142) - 2 * math.sin(angle) + 2)

local x = r * math.cos(angle) -- 计算对应的x值

local z = r * math.sin(angle) +1.5*a -

--曲线公式绘画

local function generateParabola()

local a = 10 -- 控制振幅(增加这个值会使波形更大)

local b = 0.9 -- 控制频率(增加这个值会使波形更密集)

local id = math.random(668, 681) -- 随机选择一个方块ID

local y = 8 -- 固定y坐标为8

local date = 0 -- 方块的时间戳

local step = 0.005 -- θ的步长,减小步长以增加分辨率

local maxR = 200 -- 设置r的最大值,即波形的最大半径

local blocksPerWait = 30 -- 每次等待前生成的方块数

local waitTime = 0.05 -- 每次生成后的等待时间

local theta = 0

local count = 0 -- 计数器,用于跟踪每次生成的方块数

-- 根据需要调整θ的遍历范围和步长

while true do

theta = theta + step

-- local r = a * math.sin(b * theta) -- 计算对应的r值

--local r = a * math.asin(math.tan(b * theta))

-- local r =a * math.cos(b * theta)+a * math.sin(b * theta)

--local r =a * math.cos(b * theta)*math.cos( theta)

-- local r =a * (math.sin(b * theta)*math.sin( theta))

-- local r =a * (math.cos(b * theta)*math.cos( theta))

--local r = a * math.sin(b * theta)

--local r = a * math.sin(b*theta) +b*math.sin(b*theta)

local angle=theta

local r = a*((math.sin(angle) * math.sqrt(math.abs(math.cos(angle)))) / (math.sin(angle) + 1.4142) - 2 * math.sin(angle) + 2)

if r > maxR then

break -- 如果r超过最大半径,则停止生成

end

local x = r * math.cos(theta) -- 计算对应的x值

local z = r * math.sin(theta) +1.5*a -- 计算对应的z值

-- 在计算出的位置放置方块

Block:setBlockAll(math.floor(x), y, math.floor(z), id, date)

count = count + 1 -- 增加计数器

-- 每生成10个方块后等待0.1秒

if count % blocksPerWait == 0 then

threadpool:wait(waitTime)

end

if math.floor(1000*angle) % 1256 == 0 then

id = math.random(668, 681) -- 随机选择一个方块ID

a=a+1

print(angle)

end

end

end

ScriptSupportEvent:registerEvent("Player.ClickBlock", generateParabola)

local r = a*((math.sin(angle) * math.sqrt(math.abs(math.cos(angle)))) / (math.sin(angle) + 1.4142) - 2 * math.sin(angle) + 2)

蝴蝶曲线公式

local r =a * (math.cos(b * theta)*math.cos( theta))

水平双球曲线公式

local r =a * math.cos(b * theta)*math.cos( theta)

反向双球曲线

local r =a * math.cos(b * theta)*math.sin( theta)

相关推荐
杰克尼7 小时前
BM5 合并k个已排序的链表
数据结构·算法·链表
TESmart碲视7 小时前
HKS201-M24 大师版 8K60Hz USB 3.0 适用于 2 台 PC 1台显示器 无缝切换 KVM 切换器
单片机·嵌入式硬件·物联网·游戏·计算机外设·电脑·智能硬件
xiaolang_8616_wjl8 小时前
c++文字游戏_闯关打怪
开发语言·数据结构·c++·算法·c++20
hqxstudying8 小时前
Java创建型模式---单例模式
java·数据结构·设计模式·代码规范
sun0077009 小时前
数据结构——栈的讲解(超详细)
数据结构
翻滚吧键盘10 小时前
查看linux中steam游戏的兼容性
linux·运维·游戏
ゞ 正在缓冲99%…13 小时前
leetcode918.环形子数组的最大和
数据结构·算法·leetcode·动态规划
努力写代码的熊大15 小时前
单链表和双向链表
数据结构·链表
m0_5522008215 小时前
《UE5_C++多人TPS完整教程》学习笔记40 ——《P41 装备(武器)姿势(Equipped Pose)》
c++·游戏·ue5
Orlando cron16 小时前
数据结构入门:链表
数据结构·算法·链表