From 34ceb0256d7c15e342cbf3007af6d2e010bb5501 Mon Sep 17 00:00:00 2001 From: Jordan <49217781+Dinnersteak@users.noreply.github.com> Date: Sun, 7 Sep 2025 20:22:02 -0500 Subject: [PATCH] Making it better This is revolutionary code --- Making it better | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Making it better diff --git a/Making it better b/Making it better new file mode 100644 index 0000000..f8be192 --- /dev/null +++ b/Making it better @@ -0,0 +1,15 @@ +plot(0, 0, xlim=c(-10,10), ylim=c(-10,10), asp=1, type="n") +symbols(5, -5, circles = 2, inches = FALSE, add= TRUE + ) +symbols(-5, -5, circles = 2, inches = FALSE, add= TRUE +) +polygon( + x = c(-3, 3, 3, -3), + y = c(-7, -7, 6, 6), + border = "black", + col = NA) +theta <- seq(0, pi, length.out = 100) +x_top <- 3 * cos(theta) +y_top <- 6 + 3 * sin(theta) + +lines(x_top, y_top, col = "black")