16 lines
702 B
Zig
16 lines
702 B
Zig
|
const primitive = @import("primitives.zig");
|
||
|
const Vec3 = primitive.Vec3;
|
||
|
const Point = primitive.Point;
|
||
|
|
||
|
pub var vec = Vec3{
|
||
|
.a = Point{ .x = 20, .y = 30, .z = 0, .direction = .{ .x = 1, .y = 1, .z = 1 } },
|
||
|
.b = Point{ .x = 50, .y = 40, .z = 0, .direction = .{ .x = 1, .y = 1, .z = 1 } },
|
||
|
.c = Point{ .x = 30, .y = 1, .z = 0, .direction = .{ .x = 1, .y = 1, .z = 1 } },
|
||
|
};
|
||
|
pub var vec2 = Vec3{
|
||
|
.a = Point{ .x = 20, .y = 20, .z = 0, .direction = .{ .x = 1, .y = 1, .z = 1 } },
|
||
|
.b = Point{ .x = 50, .y = 30, .z = 0, .direction = .{ .x = 1, .y = 1, .z = 1 } },
|
||
|
.c = Point{ .x = 30, .y = 1, .z = 0, .direction = .{ .x = 1, .y = 1, .z = 1 } },
|
||
|
};
|
||
|
pub var obj: [10]Vec3 = undefined;
|