From 81b17f12800648252e98be398684cafdc26d35b8 Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Wed, 5 Apr 2023 11:34:12 +0200 Subject: [PATCH] side lobe trim --- envelope.asy | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/envelope.asy b/envelope.asy index af640f3..79ad1f3 100644 --- a/envelope.asy +++ b/envelope.asy @@ -99,6 +99,11 @@ if (with_labels) { label("$CB_2$", cb2); } +// We do not make the envelope fully symmetric, instead we trim the side +// lobes near the cover. +cr1 = (corners[0].x, sqsz); +cb2 = (0, corners[3].y); + // Draw the cutouts draw(cl1 -- corners[2] -- cl2); draw(cr1 -- corners[0] -- cr2);