blob: 359b4ba60406a92430763cf144456c621da9ed5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#include <u.h>
#include <libc.h>
#include <geometry.h>
int
vfmt(Fmt *f)
{
Point2 p;
p = va_arg(f->args, Point2);
return fmtprint(f, "[%g %g %g]", p.x, p.y, p.w);
}
int
Vfmt(Fmt *f)
{
Point3 p;
p = va_arg(f->args, Point3);
return fmtprint(f, "[%g %g %g %g]", p.x, p.y, p.z, p.w);
}
void
GEOMfmtinstall(void)
{
fmtinstall('v', vfmt);
fmtinstall('V', Vfmt);
}
|