summaryrefslogtreecommitdiff
path: root/pkg/fontconfig/matrix.zig
blob: a9b05a9eba684b2060b918171d2c50ce567c816b (plain)
1
2
3
4
5
6
7
8
9
10
const std = @import("std");
const assert = std.debug.assert;
const c = @import("c.zig").c;

pub const Matrix = extern struct {
    xx: f64,
    xy: f64,
    yx: f64,
    yy: f64,
};