]> granicus.if.org Git - graphviz/commitdiff
remove unused mkbox
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 5 Jun 2021 02:21:13 +0000 (19:21 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 9 Jun 2021 04:05:43 +0000 (21:05 -0700)
lib/common/geom.c
lib/common/geomprocs.h
lib/gvc/gvc.def

index 0e12e40b256cf3bd70c1cab51ae883401ccf3c79..65402a8acdd9c5cd508bddb615056406155db584 100644 (file)
 #include <common/geom.h>
 #include <common/geomprocs.h>
 
-box mkbox(point p, point q)
-{
-    box r;
-
-    if (p.x < q.x) {
-       r.LL.x = p.x;
-       r.UR.x = q.x;
-    } else {
-       r.LL.x = q.x;
-       r.UR.x = p.x;
-    }
-    if (p.y < q.y) {
-       r.LL.y = p.y;
-       r.UR.y = q.y;
-    } else {
-       r.LL.y = q.y;
-       r.UR.y = p.y;
-    }
-    return r;
-}
-
 boxf mkboxf(pointf p, pointf q)
 {
     boxf r;
index 8b368ddb2320777892ad0c3b32f823107b09e7c7..b05b8620b9dde4321a51853cc247cf7d402a88d0 100644 (file)
@@ -31,7 +31,6 @@ extern "C" {
 #endif
 #endif
 
-extern box mkbox(point p, point q);
 extern boxf mkboxf(pointf p, pointf q);
 
 extern box flip_rec_box(box b, point p);
index e4bf34539984ca9fb18c348bf1824e72a126ff58..7b89d780e8668d8b6f62ce9020f09bf711319d2d 100644 (file)
@@ -188,7 +188,6 @@ mapbool
 maptoken    
 MaxIter    
 MemTest    
-mkbox    
 mkboxf    
 N_activefillcolor    
 N_activepencolor