ghostty/pkg/fontconfig/matrix.zig
Mitchell Hashimoto aca36ba79b fontconfig: fc-match
2022-09-14 14:26:42 -07:00

11 lines
180 B
Zig

const std = @import("std");
const assert = std.debug.assert;
const c = @import("c.zig");
pub const Matrix = extern struct {
xx: f64,
xy: f64,
yx: f64,
yy: f64,
};