git: 9front

Download patch

ref: 42251d153f052c6843bf059442ad401e36923184
parent: 81cfd454493d17774d638b7b02df961fdfceac68
author: BurnZeZ <devnull@localhost>
date: Tue Feb 12 22:24:31 EST 2019

postscript: use PI

--- a/sys/src/cmd/postscript/common/bbox.c
+++ b/sys/src/cmd/postscript/common/bbox.c
@@ -209,7 +209,7 @@
  *
  */
 
-    angle *= 3.1416 / 180;
+    angle *= PI / 180;
 
     matrix1[0] = matrix1[3] = cos(angle);
     matrix1[1] = sin(angle);
--