blob: 6b67d23f9db4d5d392d301dfdc373599956a6374 (
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
29
30
31
32
33
34
35
36
37
|
const std = @import("std");
pub fn main() !void {
// Image
const image_width = 256;
const image_height = 256;
// Render
const stdout_file = std.io.getStdOut().writer();
var bw = std.io.bufferedWriter(stdout_file);
const stdout = bw.writer();
try stdout.print("P3\n{} {}\n255\n", .{ image_width, image_height });
var j: i32 = image_height - 1;
while (j >= 0) {
std.debug.print("\rScanlines remaining: {}", .{j});
var i: i32 = 0;
while (i < image_width) {
const r = @intToFloat(f64, i) / (image_width - 1);
const g = @intToFloat(f64, j) / (image_height - 1);
const b = 0.25;
const ir = @floatToInt(u8, 255.999 * r);
const ig = @floatToInt(u8, 255.999 * g);
const ib = @floatToInt(u8, 255.999 * b);
try stdout.print("{} {} {}\n", .{ ir, ig, ib });
i += 1;
}
j -= 1;
}
try bw.flush();
}
|