第3章 振荡——《processing》学习,自己完成实验的代码

2023-10-20 16:59

本文主要是介绍第3章 振荡——《processing》学习,自己完成实验的代码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

第四个实验的完成结果为:
在这里插入图片描述
主函数显示为:

Spaceship ship;
Bob b1;
Bob b2;
Bob b3;Spring s1;
Spring s2;
Spring s3;newmover[] movers = new newmover[30];
Attractor a;float startAngle = 0;
float angleVel = 0.23;void setup() {size(840, 560);ship = new Spaceship();b1 = new Bob(width/5, 200);b2 = new Bob(width/6, 300);b3 = new Bob(width/4, 500);s1 = new Spring(b1,b2,100);s2 = new Spring(b2,b3,100);s3 = new Spring(b1,b3,100);/*attractor*/for (int i = 0; i < movers.length; i++) {movers[i] = new newmover(random(0.1,2),random(width),random(height)); }a = new Attractor();
}void draw() {background(39,64,139); /**wave**/startAngle += 0.035;float angle = startAngle;for (int x = 0; x <= width; x += 24) {float y = map(sin(angle),-1,1,height*4/5,height);noStroke();fill(238,233,233,120);ellipse(x,y,30,30);angle += angleVel;} for (int x = 0; x <= width; x +=24) {float y = map(sin(angle),-1,1,height*4/5,height);noStroke();fill(238,233,233,120);ellipse(x,y,30,30);angle += angleVel;} /*拉扯星球*/s1.update();s2.update();s3.update();s1.display();s2.display();s3.display();b1.update();b1.display2();b2.update();b2.display();b3.update();b3.display();b1.drag(mouseX, mouseY);/*attractor*/a.drag();a.hover(mouseX,mouseY);//拖拽中心物体a.display();for (int i = 0; i < movers.length; i++) {PVector force = a.attract(movers[i]);movers[i].applyForce(force);movers[i].update();movers[i].display();}/*SPACESHIP*/// Update positionship.update();// Wrape edgesship.wrapEdges();// Draw shipship.display();fill(0);text("First click !and then Left Right arrows to turn, Up to thrust",10,height-5);text("首先点击屏幕!左右控制方向转向,上键飞船启动",10,height-20);// Turn or thrust the ship depending on what key is pressedif (keyPressed) {if (key == CODED && keyCode == LEFT) {ship.turn(-0.03);} else if (key == CODED && keyCode == RIGHT) {ship.turn(0.03);} else if (key == CODED && keyCode == UP) {ship.thrust(); }}
}void mousePressed() {b1.clicked(mouseX, mouseY);a.clicked(mouseX, mouseY);
}void mouseReleased() {b1.stopDragging();a.stopDragging();
}

在这里插入图片描述
引用类Mover

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(255,222,173);strokeWeight(2);fill(255,215,0);if (dragging) {strokeWeight(4);fill(255,106,106);}ellipse(position.x,position.y,mass*2,mass*2);} void display2() { stroke(255,0,173);strokeWeight(2);fill(255,215,0);if (dragging) {strokeWeight(4);fill(255,106,106);}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;}}
}

SpaceShip代码:

class Spaceship { // All of our regular motion stuffPVector position;PVector velocity;PVector acceleration;// Arbitrary damping to slow down shipfloat damping = 0.995;float topspeed = 6;// Variable for heading!float heading = 0;// Sizefloat r = 40;// Are we thrusting (to color boosters)boolean thrusting = false;Spaceship() {position = new PVector(width/2,height/2);velocity = new PVector();acceleration = new PVector();} // Standard Euler integrationvoid update() { velocity.add(acceleration);velocity.mult(damping);velocity.limit(topspeed);position.add(velocity);acceleration.mult(0);}// Newton's law: F = M * Avoid applyForce(PVector force) {PVector f = force.get();//f.div(mass); // ignoring mass right nowacceleration.add(f);}// Turn changes anglevoid turn(float a) {heading += a;}// Apply a thrust forcevoid thrust() {float angle = heading - PI/2;PVector force = new PVector(cos(angle),sin(angle));force.mult(0.1);applyForce(force); // To draw boosterthrusting = true;}void wrapEdges() {float buffer = r*2;if (position.x > width +  buffer) position.x = -buffer;else if (position.x <    -buffer) position.x = width+buffer;if (position.y > height + buffer) position.y = -buffer;else if (position.y <    -buffer) position.y = height+buffer;}// Draw the shipvoid display() { stroke(0);strokeWeight(2);pushMatrix();translate(position.x,position.y+r);rotate(heading);fill(175);if (thrusting) fill(255,0,0);// Booster rocketsrect(-r/2,r,r/3,r/2);rect(r/2,r,r/3,r/2);fill(240,255,255);// A trianglebeginShape();vertex(-r,r);vertex(0,-r);vertex(r,r);endShape(CLOSE);rectMode(CENTER);popMatrix();thrusting = false;}
}

Spring类的代码

class Spring { PVector anchor;float len;float k = 0.2;Bob a;Bob b;// ConstructorSpring(Bob a_, Bob b_, int l) {a = a_;b = b_;len = l;} void 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;force.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);}
}

Attractor类的代码:

// A class for a draggable attractive body in our world
class Attractor {float mass;         // Mass, tied to sizePVector position;   // positionfloat g;boolean dragging = false; // Is the object being dragged?boolean rollover = false; // Is the mouse over the ellipse?PVector dragOffset;  // holds the offset for when object is clicked onAttractor() {position = new PVector(width*3/4, height/4);mass = 20;g = 0.4;dragOffset = new PVector(0.0,0.0);}PVector attract(newmover m) {PVector force = PVector.sub(position, m.position);             // Calculate direction of forcefloat distance = force.mag();                                 // Distance between objectsdistance = constrain(distance, 5.0, 25.0);                             // Limiting the distance to eliminate "extreme" results for very close or very far objectsforce.normalize();                                            // Normalize vector (distance doesn't matter here, we just want this vector for direction)float strength = (g * mass * m.mass) / (distance * distance); // Calculate gravitional force magnitudeforce.mult(strength);                                         // Get force vector --> magnitude * directionreturn force;}// Method to displayvoid display() {stroke(255,255,255,120);strokeWeight(6);if (dragging) fill (50);else if (rollover) fill(100);else fill(0,191,255);ellipse(position.x, position.y, 70, 70);}//mouse interactionvoid 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 hover(int mx, int my) {float d = dist(mx,my,position.x,position.y);if (d < mass) {rollover = true;} else {rollover = false;}}void stopDragging() {dragging = false;}void drag() {if (dragging) {position.x = mouseX + dragOffset.x;position.y = mouseY + dragOffset.y;}} 
}

newmover类——被Attractor所吸引。

class newmover {PVector position;PVector velocity;PVector acceleration;float mass;float angle = 0;float aVelocity = 0;float aAcceleration = 0;newmover(float m, float x, float y) {mass = m;position = new PVector(x,y);velocity = new PVector(random(-1,1),random(-1,1));acceleration = new PVector(0,0);}void applyForce(PVector force) {PVector f = PVector.div(force,mass);acceleration.add(f);}void update() {velocity.add(acceleration);position.add(velocity);aAcceleration = acceleration.x / 10.0;aVelocity += aAcceleration;aVelocity = constrain(aVelocity,-0.1,0.1);angle += aVelocity;acceleration.mult(0);}void display() {noStroke();//fill(255,130,171,230);float g = random(255);/* float sd = 20; float mean = 200;*//*g = constrain(g,0,255);*/fill(255,g,50);rectMode(CENTER);pushMatrix();translate(position.x,position.y);rotate(angle);rect(0,0,mass*16,mass*16);popMatrix();}
}

这篇关于第3章 振荡——《processing》学习,自己完成实验的代码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

使用C#代码在PDF文档中添加、删除和替换图片

《使用C#代码在PDF文档中添加、删除和替换图片》在当今数字化文档处理场景中,动态操作PDF文档中的图像已成为企业级应用开发的核心需求之一,本文将介绍如何在.NET平台使用C#代码在PDF文档中添加、... 目录引言用C#添加图片到PDF文档用C#删除PDF文档中的图片用C#替换PDF文档中的图片引言在当

C#使用SQLite进行大数据量高效处理的代码示例

《C#使用SQLite进行大数据量高效处理的代码示例》在软件开发中,高效处理大数据量是一个常见且具有挑战性的任务,SQLite因其零配置、嵌入式、跨平台的特性,成为许多开发者的首选数据库,本文将深入探... 目录前言准备工作数据实体核心技术批量插入:从乌龟到猎豹的蜕变分页查询:加载百万数据异步处理:拒绝界面

用js控制视频播放进度基本示例代码

《用js控制视频播放进度基本示例代码》写前端的时候,很多的时候是需要支持要网页视频播放的功能,下面这篇文章主要给大家介绍了关于用js控制视频播放进度的相关资料,文中通过代码介绍的非常详细,需要的朋友可... 目录前言html部分:JavaScript部分:注意:总结前言在javascript中控制视频播放

Spring Boot 3.4.3 基于 Spring WebFlux 实现 SSE 功能(代码示例)

《SpringBoot3.4.3基于SpringWebFlux实现SSE功能(代码示例)》SpringBoot3.4.3结合SpringWebFlux实现SSE功能,为实时数据推送提供... 目录1. SSE 简介1.1 什么是 SSE?1.2 SSE 的优点1.3 适用场景2. Spring WebFlu

java之Objects.nonNull用法代码解读

《java之Objects.nonNull用法代码解读》:本文主要介绍java之Objects.nonNull用法代码,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐... 目录Java之Objects.nonwww.chinasem.cnNull用法代码Objects.nonN

SpringBoot实现MD5加盐算法的示例代码

《SpringBoot实现MD5加盐算法的示例代码》加盐算法是一种用于增强密码安全性的技术,本文主要介绍了SpringBoot实现MD5加盐算法的示例代码,文中通过示例代码介绍的非常详细,对大家的学习... 目录一、什么是加盐算法二、如何实现加盐算法2.1 加盐算法代码实现2.2 注册页面中进行密码加盐2.

python+opencv处理颜色之将目标颜色转换实例代码

《python+opencv处理颜色之将目标颜色转换实例代码》OpenCV是一个的跨平台计算机视觉库,可以运行在Linux、Windows和MacOS操作系统上,:本文主要介绍python+ope... 目录下面是代码+ 效果 + 解释转HSV: 关于颜色总是要转HSV的掩膜再标注总结 目标:将红色的部分滤

在C#中调用Python代码的两种实现方式

《在C#中调用Python代码的两种实现方式》:本文主要介绍在C#中调用Python代码的两种实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录C#调用python代码的方式1. 使用 Python.NET2. 使用外部进程调用 Python 脚本总结C#调

SpringBoot使用OkHttp完成高效网络请求详解

《SpringBoot使用OkHttp完成高效网络请求详解》OkHttp是一个高效的HTTP客户端,支持同步和异步请求,且具备自动处理cookie、缓存和连接池等高级功能,下面我们来看看SpringB... 目录一、OkHttp 简介二、在 Spring Boot 中集成 OkHttp三、封装 OkHttp