From 656221524afb246adcb69d298e0e55563aac70a2 Mon Sep 17 00:00:00 2001 From: "Milasinovic, Nikola" Date: Thu, 5 Sep 2024 14:07:56 +0200 Subject: [PATCH] feat: add new stone hatch --- src/utility/misc/hatches.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/utility/misc/hatches.js b/src/utility/misc/hatches.js index cd1d176..7348042 100644 --- a/src/utility/misc/hatches.js +++ b/src/utility/misc/hatches.js @@ -141,6 +141,16 @@ function concrete(name, scale = 1, angle = 0, color = 'black', bg = 'white', sw `; } +function stone(name, scale = 1, angle = 0, color = 'black', bg = 'white', sw = 1, transform) { + return ` + + + + + + `; +} + module.exports = { crosshatch, lines, @@ -148,4 +158,5 @@ module.exports = { concrete, brick, insulation, + stone, };