mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-20 00:18:53 +03:00
11 lines
182 B
Zig
11 lines
182 B
Zig
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,
|
|
};
|