diff --git a/media/attribution.js b/media/attribution.js index c27a09e6..7d4d4154 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -1093,6 +1093,7 @@ const attributionData = { { name: "house.svg", source: null }, { name: "mailbox.svg", source: null }, { name: "mobile-home.svg", source: null }, + { name: "doorway.svg", source: null }, ], authors: [ "chemicalcrux" diff --git a/media/buildings/doorway.svg b/media/buildings/doorway.svg new file mode 100644 index 00000000..fe0dfa44 --- /dev/null +++ b/media/buildings/doorway.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/presets/buildings.js b/presets/buildings.js index dfee8e62..b9b0dc73 100644 --- a/presets/buildings.js +++ b/presets/buildings.js @@ -219,6 +219,15 @@ function makeBuildings() { ) }); + results.push({ + name: "Doorway", + constructor: () => makeBuilding( + "Doorway", + math.unit(83, "inches"), + { source: "./media/buildings/doorway.svg" } + ) + }); + results.sort((b1, b2) => { e1 = b1.constructor(); e2 = b2.constructor();