Dibujar rectángulo en gráficos C

rectángulo() se utiliza para dibujar un rectángulo. Se requieren las coordenadas de la esquina superior izquierda e inferior derecha para dibujar el rectángulo. left especifica la coordenada X de la esquina superior izquierda, top especifica la coordenada Y de la esquina superior izquierda, right especifica la coordenada X de la esquina inferior derecha, bottom especifica la coordenada Y de la esquina inferior derecha.
Sintaxis:

rectangle(int left, int top, int right, int bottom);

Ejemplos:

Input : left = 150, top = 250, right = 450, bottom = 350;
Output : 


Input : left = 150, top = 150, right = 450, bottom = 450;
Output : 

A continuación se muestra la implementación de la función rectángulo:

// C program to draw a rectangle
#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;
  
    // location of left, top, right, bottom
    int left = 150, top = 150;
    int right = 450, bottom = 450;
  
    // initgraph initializes the graphics system
    // by loading a graphics driver from disk
    initgraph(&gd, &gm, "");
  
    // rectangle function
    rectangle(left, top, right, bottom);
  
    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 DevanshuAgarwal 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 *