home *** CD-ROM | disk | FTP | other *** search
- /*
- * BCC2GRX - Interfacing Borland based graphics programs to LIBGRX
- * Copyright (C) 1993 Hartmut Schirmer
- *
- * see bccgrx.c for details
- */
-
- #include "bccgrx00.h"
-
- void circle(int x, int y, int radius)
- {
- _DO_INIT_CHECK;
- GrEllipse(x+VL,y+VT, XR(radius), YR(radius), COL);
- }
-
-