Dibujar círculo en gráficos C

El archivo de encabezado graphics.h contiene la función circle() que dibuja un círculo con centro en (x, y) y radio dado.

Sintaxis:

circle(x, y, radius);

where,
(x, y) is center of the circle.
'radius' is the Radius of the circle.

Ejemplos:

Input : x = 250, y = 200, radius = 50
Output : 

Input : x = 300, y = 150, radius = 90
Output : 

A continuación se muestra la implementación para dibujar un círculo en C:

// C Implementation for drawing circle
#include <graphics.h>
  
//driver code
int main()
{
    // gm is Graphics mode which is
    // a computer display mode that
    // generates image using pixels.
    // DETECT is a macro defined in
    // "graphics.h" header file
    int gd = DETECT, gm;
  
    // initgraph initializes the
    // graphics system by loading a
    // graphics driver from disk
    initgraph(&gd, &gm, "");
  
    // circle function
    circle(250, 200, 50);
  
    getch();
  
    // closegraph function closes the
    // graphics mode and deallocates
    // all memory allocated by
    // graphics system .
    closegraph();
  
    return 0;
}

Producción :


Publicación traducida automáticamente

Artículo escrito por Sahil_Bansall y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *