2023-03-30 13:17:08 -06:00
|
|
|
local _ENV = mkmodule('plugins.design')
|
|
|
|
|
2023-04-27 20:37:56 -06:00
|
|
|
function draw_shape(arr)
|
|
|
|
design_draw_shape(arr)
|
|
|
|
end
|
|
|
|
|
|
|
|
function draw_points(points_obj)
|
|
|
|
design_draw_points(points_obj)
|
|
|
|
end
|
2023-03-30 13:17:08 -06:00
|
|
|
|
2023-04-27 20:37:56 -06:00
|
|
|
function clear_shape(arr)
|
|
|
|
design_clear_shape(arr)
|
2023-03-30 13:17:08 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
return _ENV
|