Bytebeat


Return
1. Don`t create new thread for each song every time, or you will be banned!
2. Create your own thread and post all your songs in it, or post in the Common Thread.
3. Post your requests and reports here.

[ Common thread / Requests / Changelog / Rules ]
absolute197 / aniruF / ANoUserXD / aturned777 / BaenHoHoHo / Blueygray / botbeat / BrokenCircle / Chasyxx / ChrisRM380 / Decent-Manager-6169 / emelchenko / eSlashMachine / Glebguything / Greaserpirate / hcdphobe / Holiday-Charge-1313 / HypernovaHeathen / IgorZevel / kOLbOSa_exe / Kouzerumatsu / LarkeyFactorial / lhphr / MarioFan171 / MT2023 / n3409 / nickdoesthings / OnixIsThePewterGod / p8192 / PortablePorcelain / PrincessPriscillaPT / psubscirbe / rubi / SArpnt / SentleXR / Slinx92 / SthephanShi / Syranero / Thinguy / TKBMC1845 / trashimpossible3699 / Two2Fall / Underline / Unname4798 / Zackx

CAPTCHA
 Deletion password
  • Supported file types are JPG, PNG, GIF, AVIF, WEBP, WEBM, MP4 and MOV.
  • Limit: 4 files, 30 MB per file (60 MB for Passcode users).
  • Images greater than 250x250 will be thumbnailed.
  • 2785 unique users on the board.

JPEG image.jpg
43.29KB, 736x903
drawing pixels in points mode
more info in the code

// funcbeat-display
// 28-7-2026
// 48000 hz funcbeat, points mode, max zoom
// by wave2ion
// tags: #drawing, #test
// note: limitations for drawing lines, but im too far in of posting this so idk :p


const pc = 1 // make pc 2 if on pc


let samples = Array.from({length:512*pc},()=>-1)

function write(x,y,value){
	// value being true means write that pixel
	// else make it black
	// x ranges from 0 to 1 apparently
	// y ranges from -1 to 1
	// ik its weird but im too lazy to fix it at this point
	if (value) {
		samples[floor(x*512*pc)]=y
	} else {
		samples[floor(x*512*pc)]=-1
	}
}

// example usage down here V
return (t,s)=>{
	// every second we draw a random pixel on the screen
	if (t%1==0) {
		write(random(),random()*2-1,true)
	}

	// get sample and output
	return samples[floor(t*s)%(512*pc)]
}


Delete Post  

1. Don`t create new thread for each song every time, or you will be banned!
2. Create your own thread and post all your songs in it, or post in the Common Thread.
3. Post your requests and reports here.

[ Common thread / Requests / Changelog / Rules ]
absolute197 / aniruF / ANoUserXD / aturned777 / BaenHoHoHo / Blueygray / botbeat / BrokenCircle / Chasyxx / ChrisRM380 / Decent-Manager-6169 / emelchenko / eSlashMachine / Glebguything / Greaserpirate / hcdphobe / Holiday-Charge-1313 / HypernovaHeathen / IgorZevel / kOLbOSa_exe / Kouzerumatsu / LarkeyFactorial / lhphr / MarioFan171 / MT2023 / n3409 / nickdoesthings / OnixIsThePewterGod / p8192 / PortablePorcelain / PrincessPriscillaPT / psubscirbe / rubi / SArpnt / SentleXR / Slinx92 / SthephanShi / Syranero / Thinguy / TKBMC1845 / trashimpossible3699 / Two2Fall / Underline / Unname4798 / Zackx
Return