9 lines
272 B
Zig
9 lines
272 B
Zig
const Document = @import("../../models/Document.zig");
|
|
const pipeline = @import("pipeline.zig");
|
|
const DrawContext = pipeline.DrawContext;
|
|
|
|
const Object = Document.Object;
|
|
|
|
/// Дуга (не реализовано).
|
|
pub fn draw(_: *DrawContext, _: *const Object) void {}
|