physics/projects/projectile/index.js

84 lines
1.6 KiB
JavaScript
Raw Normal View History

2021-10-03 18:41:52 +02:00
2021-10-03 21:34:25 +02:00
let t=0;
let v0=50
2021-10-04 10:32:14 +02:00
let x0=50
2021-10-03 21:34:25 +02:00
let y0=50
let g=9.81
2021-10-03 18:41:52 +02:00
let projectile= function (node){
2021-10-04 17:53:12 +02:00
let width=800
let height=300
let dots=[] // Dots that show projectile path
2021-10-03 18:41:52 +02:00
node.setup = function() {
2021-10-04 10:32:14 +02:00
c=node.createCanvas(width, height);
v0t=node.createElement('p', '');
katex.render("v_0", v0t.elt);
v0t.elt.style.color="#b4b4b4"
2021-10-03 18:41:52 +02:00
};
2021-10-04 17:53:12 +02:00
// See explanations
2021-10-03 18:41:52 +02:00
function x(t) {
return x0+v0*t
}
function y(t) {
return height - (-1/2 * g * t**2 + v0 * t + y0)
}
2021-10-04 17:53:12 +02:00
2021-10-03 18:41:52 +02:00
node.draw = function() {
2021-10-04 10:32:14 +02:00
node.background(70);
2021-10-03 21:34:25 +02:00
node.noStroke();
dots.forEach((elt)=>{node.ellipse(elt[0],elt[1],5,5);})
2021-10-04 10:32:14 +02:00
node.fill(255)
2021-10-03 18:41:52 +02:00
node.ellipse(x(t),y(t),20,20);
2021-10-04 10:32:14 +02:00
node.fill(255)
2021-10-03 18:41:52 +02:00
dots.push([x(t),y(t)])
2021-10-03 21:34:25 +02:00
if(t>50 || y(t)>height){
2021-10-03 18:41:52 +02:00
node.noLoop()
}
2021-10-04 10:32:14 +02:00
t+=0.05
node.push()
node.fill(22)
node.stroke(180)
m=draw_arrow(node,x0,height-y0,x0+v0,height-y0-v0)
console.log(m.y)
v0t.position(c.position().x+m.x,c.position().y+m.y)
node.pop()
2021-10-03 18:41:52 +02:00
};
2021-10-04 17:53:12 +02:00
2021-10-04 10:32:14 +02:00
node.windowResized = function(){
v0t.position(c.position().x+m.x,c.position().y+m.y)
2021-10-04 17:53:12 +02:00
node.resizeCanvas(Math.min(window.innerWidth,width), height);
2021-10-04 10:32:14 +02:00
}
2021-10-03 18:41:52 +02:00
};
2021-10-03 21:34:25 +02:00
refresh=function(){
t=0
x0=parseFloat(app.x0)
y0=parseFloat(app.y0)
v0=parseFloat(app.v0)
g=parseFloat(app.g)
console.log(app.x0)
p5Load()
}
project_init=function(){
app = new Vue({
el: '#app',
data :{
x0:x0,
y0:y0,
v0:v0,
g:g
}
})
p5Load()
}