Processing+代码本色 chap3 振荡

2023-11-26 13:20

本文主要是介绍Processing+代码本色 chap3 振荡,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

弹力

介绍

在这里插入图片描述
弹簧的弹力可以根据胡克定律计算得到,胡克定律以英国物理学家罗伯特·胡克命名,他在1660年发明了这个公式。胡克最初是用拉丁文描述这个公式的——“Ut tensio,sic vis”, 这句话的意思是“力如伸长(那样变化)”。我们可以这么理解它:弹簧的弹力与弹簧的伸长量成正比。

先用胡克定律计算弹力的大小。我们需要知道k和x的值:k很简单,它只是一个常量,我们可以随意选择一个数。

float k = 0.1;

x可能会更复杂,我们需要知道“当前长度和静止长度的差”。可以用restLength表示静止长度,

PVector dir = PVector.sub(bob,anchor); 由枢轴点指向摆锤的向量,它告诉我们弹簧的当前长度
float currentLength = dir.mag();
float x = restLength - currentLength;

方向计算
在这里插入图片描述

float k = 0.1; 按照胡克定律计算得到的弹力
PVector force = PVector.sub(bob,anchor);
float currentLength = dir.mag();
float x = restLength - currentLength;
force.normalize(); 弹力的方向(单位向量)
force.mult(-1 k x); 把方向和大小放在一起!

下面两个类不做过多介绍,可以参考书本第三章的介绍

Spring类的实现

class Spring { PVector anchor;// 静止长度和弹簧常数float len;float k = 0.2;Bob a;Bob b;// Spring(Bob a_, Bob b_, int l) {a = a_;b = b_;len = l;} // Calculate spring forcevoid update() {// Vector pointing from anchor to bob positionPVector force = PVector.sub(a.position, b.position);// What is distancefloat d = force.mag();// Stretch is difference between current distance and rest lengthfloat stretch = d - len;// Calculate force according to Hooke's Lawforce.normalize();force.mult(-1 * k * stretch);a.applyForce(force);force.mult(-1);b.applyForce(force);}void display() {strokeWeight(2);stroke(0);line(a.position.x, a.position.y, b.position.x, b.position.y);}
}

控制小球的类(Bob类)

class Bob { PVector position;PVector velocity;PVector acceleration;float mass = 12;// Arbitrary damping to simulate friction / drag float damping = 0.95;// For mouse interactionPVector dragOffset;boolean dragging = false;// ConstructorBob(float x, float y) {position = new PVector(x,y);velocity = new PVector();acceleration = new PVector();dragOffset = new PVector();} // Standard Euler integrationvoid update() { velocity.add(acceleration);velocity.mult(damping);position.add(velocity);acceleration.mult(0);}// Newton's law: F = M * Avoid applyForce(PVector force) {PVector f = force.get();f.div(mass);acceleration.add(f);}// Draw the bobvoid display() { stroke(0);strokeWeight(2);fill(175);if (dragging) {fill(50);}ellipse(position.x,position.y,mass*2,mass*2);} // The methods below are for mouse interaction// This checks to see if we clicked on the movervoid clicked(int mx, int my) {float d = dist(mx,my,position.x,position.y);if (d < mass) {dragging = true;dragOffset.x = position.x-mx;dragOffset.y = position.y-my;}}void stopDragging() {dragging = false;}void drag(int mx, int my) {if (dragging) {position.x = mx + dragOffset.x;position.y = my + dragOffset.y;}}
}

网格设计

在这里插入图片描述
根据上面两个类对网进行实现

int Bobnum = 10;
Bob[][] b = new Bob[Bobnum][Bobnum];
Spring[] s = new Spring[2*Bobnum*(Bobnum-1)];

Bobnum:网的长度(即每一行的点的个数,宽度和长度相等)
b:存储网的点的数组
s:存储点之间连线的数组

对数组进行初始化,连线方式参考上图

void setup() {size(1000, 800);// 在起始位置创建对象//请注意,Spring构造函数中的第三个参数是"rest length"int Springnum = 0;for(int i=0;i<Bobnum;i++)for(int j=0;j<Bobnum;j++)b[i][j] = new Bob(width*j/(Bobnum-1),height*i/((Bobnum-1)));for(int i=0;i<Bobnum;i++)for(int j=0;j<Bobnum;j++){if(j<Bobnum-1&&i<Bobnum-1){s[Springnum] = new Spring(b[i][j],b[i][j+1],int(width/(Bobnum-1)));s[Springnum+1] = new Spring(b[i][j],b[i+1][j],int(height/((Bobnum-1))));Springnum +=2;}else{if(j==Bobnum-1 &&i<Bobnum-1){s[Springnum] = new Spring(b[i][j],b[i+1][j],int(height/((Bobnum-1))));Springnum+=1;}else if(j<Bobnum-1&&i==Bobnum-1){s[Springnum] = new Spring(b[i][j],b[i][j+1],int(width/(Bobnum-1)));Springnum +=1;}else{}}}
}

在draw()函数中进行实现

void draw() {background(255); for(int a=0;a<2*Bobnum*(Bobnum-1);a++)s[a].update();for(int a=0;a<2*Bobnum*(Bobnum-1);a++)s[a].display();for(int i=0;i<Bobnum;i++)for(int j=0;j<Bobnum;j++){b[i][j].update();b[i][j].display();}b[int(Bobnum/2)][int(Bobnum/2)].drag(mouseX, mouseY);fill(255,0,0);ellipse(b[int(Bobnum/2)][int(Bobnum/2)].position.x,b[int(Bobnum/2)][int(Bobnum/2)].position.y,b[int(Bobnum/2)][int(Bobnum/2)].mass*2,b[int(Bobnum/2)][int(Bobnum/2)].mass*2);fill(0);text("点击鼠标右键重置", 10, 30);
}

点击鼠标右键进行网的初始位置重现,鼠标左键点击红色的球可以进行拖动。

void mousePressed() {if (mouseButton == RIGHT){setup();}b[int(Bobnum/2)][int(Bobnum/2)].clicked(mouseX, mouseY);
}void mouseReleased() {b[int(Bobnum/2)][int(Bobnum/2)].stopDragging();
}

运行效果

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

这篇关于Processing+代码本色 chap3 振荡的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/425768

相关文章

活用c4d官方开发文档查询代码

当你问AI助手比如豆包,如何用python禁止掉xpresso标签时候,它会提示到 这时候要用到两个东西。https://developers.maxon.net/论坛搜索和开发文档 比如这里我就在官方找到正确的id描述 然后我就把参数标签换过来

poj 1258 Agri-Net(最小生成树模板代码)

感觉用这题来当模板更适合。 题意就是给你邻接矩阵求最小生成树啦。~ prim代码:效率很高。172k...0ms。 #include<stdio.h>#include<algorithm>using namespace std;const int MaxN = 101;const int INF = 0x3f3f3f3f;int g[MaxN][MaxN];int n

计算机毕业设计 大学志愿填报系统 Java+SpringBoot+Vue 前后端分离 文档报告 代码讲解 安装调试

🍊作者:计算机编程-吉哥 🍊简介:专业从事JavaWeb程序开发,微信小程序开发,定制化项目、 源码、代码讲解、文档撰写、ppt制作。做自己喜欢的事,生活就是快乐的。 🍊心愿:点赞 👍 收藏 ⭐评论 📝 🍅 文末获取源码联系 👇🏻 精彩专栏推荐订阅 👇🏻 不然下次找不到哟~Java毕业设计项目~热门选题推荐《1000套》 目录 1.技术选型 2.开发工具 3.功能

代码随想录冲冲冲 Day39 动态规划Part7

198. 打家劫舍 dp数组的意义是在第i位的时候偷的最大钱数是多少 如果nums的size为0 总价值当然就是0 如果nums的size为1 总价值是nums[0] 遍历顺序就是从小到大遍历 之后是递推公式 对于dp[i]的最大价值来说有两种可能 1.偷第i个 那么最大价值就是dp[i-2]+nums[i] 2.不偷第i个 那么价值就是dp[i-1] 之后取这两个的最大值就是d

pip-tools:打造可重复、可控的 Python 开发环境,解决依赖关系,让代码更稳定

在 Python 开发中,管理依赖关系是一项繁琐且容易出错的任务。手动更新依赖版本、处理冲突、确保一致性等等,都可能让开发者感到头疼。而 pip-tools 为开发者提供了一套稳定可靠的解决方案。 什么是 pip-tools? pip-tools 是一组命令行工具,旨在简化 Python 依赖关系的管理,确保项目环境的稳定性和可重复性。它主要包含两个核心工具:pip-compile 和 pip

D4代码AC集

贪心问题解决的步骤: (局部贪心能导致全局贪心)    1.确定贪心策略    2.验证贪心策略是否正确 排队接水 #include<bits/stdc++.h>using namespace std;int main(){int w,n,a[32000];cin>>w>>n;for(int i=1;i<=n;i++){cin>>a[i];}sort(a+1,a+n+1);int i=1

html css jquery选项卡 代码练习小项目

在学习 html 和 css jquery 结合使用的时候 做好是能尝试做一些简单的小功能,来提高自己的 逻辑能力,熟悉代码的编写语法 下面分享一段代码 使用html css jquery选项卡 代码练习 <div class="box"><dl class="tab"><dd class="active">手机</dd><dd>家电</dd><dd>服装</dd><dd>数码</dd><dd

生信代码入门:从零开始掌握生物信息学编程技能

少走弯路,高效分析;了解生信云,访问 【生信圆桌x生信专用云服务器】 : www.tebteb.cc 介绍 生物信息学是一个高度跨学科的领域,结合了生物学、计算机科学和统计学。随着高通量测序技术的发展,海量的生物数据需要通过编程来进行处理和分析。因此,掌握生信编程技能,成为每一个生物信息学研究者的必备能力。 生信代码入门,旨在帮助初学者从零开始学习生物信息学中的编程基础。通过学习常用

husky 工具配置代码检查工作流:提交代码至仓库前做代码检查

提示:这篇博客以我前两篇博客作为先修知识,请大家先去看看我前两篇博客 博客指路:前端 ESlint 代码规范及修复代码规范错误-CSDN博客前端 Vue3 项目开发—— ESLint & prettier 配置代码风格-CSDN博客 husky 工具配置代码检查工作流的作用 在工作中,我们经常需要将写好的代码提交至代码仓库 但是由于程序员疏忽而将不规范的代码提交至仓库,显然是不合理的 所

Unity3D自带Mouse Look鼠标视角代码解析。

Unity3D自带Mouse Look鼠标视角代码解析。 代码块 代码块语法遵循标准markdown代码,例如: using UnityEngine;using System.Collections;/// MouseLook rotates the transform based on the mouse delta./// Minimum and Maximum values can