Through penises...

Developer
Size
2,057 Kb
Views
24,288

How do I make an through penises...?

What is a through penises...? How do you make a through penises...? This script and codes were developed by Findoff on 03 October 2022, Monday.

Through penises... Previews

Through penises... - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Through penises...</title>
</head>
<body> <script src="js/index.js"></script>
</body>
</html>

Through penises... - Script Codes JS Codes

var canvas, ctx, w, h;
document.body.appendChild( canvas = document.createElement('canvas') );
ctx = canvas.getContext('2d');
document.body.style.overflow = 'hidden';
document.body.style.padding = '0px';
document.body.style.backgroundColor = '#000';
w = canvas.width = window.innerWidth;
h = canvas.height = window.innerHeight;
var wh = w/2;
var hh = h/2;
var meteors = [], nMeteors = 100;
var img = (function(){ var canvas = document.createElement('canvas'); var ctx = canvas.getContext('2d'); canvas.width = canvas.height = 100; ctx.beginPath(); ctx.fillStyle = '#f00'; //ctx.arc(50,50, 50, 0,Math.PI*2, 0); ctx.moveTo(40,100); ctx.quadraticCurveTo(50,0, 60,100); ctx.closePath(); ctx.fill(); ctx.beginPath(); ctx.arc(30,90, 10, 0,Math.PI*2, 0); ctx.arc(70,90, 10, 0,Math.PI*2, 0); ctx.fill(); return canvas;
})();
setInterval(function(){ //ctx.clearRect(0,0, w, h); ctx.fillStyle = 'rgba(0,0,0, 0.1)'; ctx.fillRect(0,0, w,h); gen(); ctx.fillStyle = '#fff'; ctx.save(); ctx.translate(wh,hh); for(var i=0; i<meteors.length; ++i) { var t = meteors[i]; var x = t.pos[0]/t.pos[2]; var y = t.pos[1]/t.pos[2]; if( x<-wh || x>wh || y<-hh || y>hh || t.pos[2]<0 ) { meteors.splice(i,1); --i; continue; } ctx.beginPath(); //ctx.arc(x, y, t.r/t.pos[2], 0,Math.PI*2, 0); //ctx.drawImage(img, x,y, t.r/t.pos[2],t.r/t.pos[2]); ctx.save(); ctx.translate(x,y); ctx.rotate(t.a); t.a += t.avel; ctx.drawImage(img, 0,0, t.r/t.pos[2],t.r/t.pos[2]); ctx.restore(); t.pos[0] += t.vel[0]; t.pos[1] += t.vel[1]; t.pos[2] += t.vel[2]; ctx.fill(); } ctx.restore();
}, 16);
function gen() { while(meteors.length < nMeteors) { var z = 300; var xw = w*z; var xh = h*z; var rf = Math.PI/8; meteors.push({ pos: [xw*Math.random()-wh*z, xh*Math.random()-hh*z, z], vel: [0,0,-2], a: 0, avel: rf*Math.random()-rf/2, r: 1550 }); }
};
Through penises... - Script Codes
Through penises... - Script Codes
Home Page Home
Developer Findoff
Username findoff
Uploaded October 03, 2022
Rating 4
Size 2,057 Kb
Views 24,288
Do you need developer help for Through penises...?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Findoff (findoff) Script Codes
Create amazing video scripts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!