shithub: pain

ref: ba2794f02b1f69c0b7c2310f967c308d17471c78
dir: /utils.c/

View raw version
#include <u.h>
#include <libc.h>
#include <draw.h>

#include "dat.h"
#include "fns.h"

void
quitloop(void)
{
	RunLoop = 0;
}

Point
mulptf(Point p, float f)
{
	p.x = (int)(((float)p.x) * f);
	p.y = (int)(((float)p.y) * f);
	return p;
}