9front - general discussion about 9front
 help / color / mirror / Atom feed
* [9front] [PATCH] plot: fix disc and circle operations
@ 2022-10-22 16:22 an2qzavok
  2022-10-22 18:21 ` ori
  2022-10-22 18:53 ` Thaddeus Woskowiak
  0 siblings, 2 replies; 5+ messages in thread
From: an2qzavok @ 2022-10-22 16:22 UTC (permalink / raw)
  To: 9front

Discs and circles were drawn on screen directly and later erased by
offscreen buffer.
This change puts them in line with other operations, which draw to
offscreen first and to screen when necessary

diff dfee08d50df674cd76f74320bc9c8bc6a4a95f1e uncommitted
--- a/sys/src/cmd/plot/libplot/circ.c
+++ b/sys/src/cmd/plot/libplot/circ.c
@@ -8,5 +8,5 @@
         rad=SCR(-r);
     else
         rad=SCR(r);
-    ellipse(screen, p, rad, rad, 0, getcolor(e1->foregr), ZP);
+    m_circ(p, rad, e1->foregr);
 }
--- a/sys/src/cmd/plot/libplot/disk.c
+++ b/sys/src/cmd/plot/libplot/disk.c
@@ -8,5 +8,5 @@
         rad=SCR(-r);
     else
         rad=SCR(r);
-    fillellipse(screen, p, rad, rad, getcolor(e1->foregr), ZP);
+    m_disc(p, rad, e1->foregr);
 }
--- a/sys/src/cmd/plot/libplot/machdep.c
+++ b/sys/src/cmd/plot/libplot/machdep.c
@@ -34,6 +34,29 @@
     if(offscreen != screen && !buffer)
         draw(screen, xlr(Rect(x0, y0, x1+1, y1+1)), getcolor(c), nil, ZP);
 }
+
+/*
+ * Draw circle at point p with radius rad in color c
+ */
+void
+m_circ(Point p, int rad, int c)
+{
+    ellipse(offscreen, p, rad, rad, 0, getcolor(c), ZP);
+    if (offscreen != screen && !buffer)
+        ellipse(screen, p, rad, rad, 0, getcolor(c), ZP);
+}
+
+/*
+ * Draw disc (filled circle) at point p with radius rad in color c
+ */
+void
+m_disc(Point p, int rad, int c)
+{
+    fillellipse(offscreen, p, rad, rad, getcolor(c), ZP);
+    if (offscreen != screen && !buffer)
+        fillellipse(screen, p, rad, rad, getcolor(c), ZP);
+}
+
 /*
  * Draw text between pointers p and q with first character centered at x, y.
  * Use color c.  Centered if cen is non-zero, right-justified if
right is non-zero.
--- a/sys/src/cmd/plot/libplot/mplot.h
+++ b/sys/src/cmd/plot/libplot/mplot.h
@@ -36,6 +36,8 @@
  */
 #include "../plot.h"
 void m_clrwin(int, int, int, int, int);
+void m_circ(Point, int, int);
+void m_disc(Point, int, int);
 void m_finish(void);
 void m_initialize(char *);
 int m_text(int, int, char *, char *, int, int, int);

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-10-22 18:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-22 16:22 [9front] [PATCH] plot: fix disc and circle operations an2qzavok
2022-10-22 18:21 ` ori
2022-10-22 18:25   ` an2qzavok
2022-10-22 18:31     ` ori
2022-10-22 18:53 ` Thaddeus Woskowiak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).