Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
/*Graphics algorithm to impliment the BOUNDARY-FILL-4 Algorithm */

#include<dos.h>
#include<stdio.h>
#include<conio.h>
#include<graphics.h>
void drawpolygon(int n,int arr[][2],int color);
void boundfill4(int x,int y,int fill,int boundary);
void main()
{
    int arr[10][2],n,x,y;
    printf("Enter the number of edges : ");
    scanf("%d",&n);
    for(int i=0;i<n;i++)
    {
        printf("Enter the X and Y position for %d edge : ",i+1);
        scanf("%d %d",&arr[i][0],&arr[i][1]);
    }
    printf("Enter X and Y co-ordinates of the point from where you want \n");
    printf("to start BOUNDARY-FILL : ");
    scanf("%d %d",&x,&y);
    int gd=DETECT,gm;
    initgraph(&gd,&gm,"c:\\tc\\bgi");
    drawpolygon(n,arr,RED);
    getch();
    boundfill4(x,y,BLUE,RED);
    getch();
    closegraph();
    restorecrtmode();
}
void drawpolygon(int n,int arr[][2],int color)
{
    setcolor(color);
    for(int i=0;i<n;i++)
    {
        if( i == n-1 )
            line(arr[i][0],arr[i][1],arr[0][0],arr[0][1]);
        else
            line(arr[i][0],arr[i][1],arr[i+1][0],arr[i+1][1]);
    }
}
void boundfill4(int x,int y,int fill,int boundary) //boundary=RED
{ //fill=BLUE
    int current;
    current = getpixel(x,y);
    if( (current != boundary) && (current != fill) )
    {
        delay(2);
        putpixel(x,y,fill);
        boundfill4(x+1,y,fill,boundary);
        boundfill4(x-1,y,fill,boundary);
        boundfill4(x,y+1,fill,boundary);
        boundfill4(x,y-1,fill,boundary);
    }
}




/*Graphics algorithm to impliment the BOUNDARY-FILL-8 Algorithm */

#include<dos.h>
#include<stdio.h>
#include<conio.h>
#include<graphics.h>
void boundfill8(int x,int y,int fill,int boundary);
void main()
{
    int r,x1,y1,x2,y2;
    printf("Enter Left and Top co-ordinates to draw a SQUARE : ");
    scanf("%d %d",&x1,&y1);
    printf("Enter Right and Bottom co-ordinates to draw a SQUARE : ");
    scanf("%d %d",&x2,&y2);

    int gd=DETECT,gm;
    initgraph(&gd,&gm,"c:\\tc\\bgi");
    setcolor(RED);
    rectangle(x1,y1,x2,y2);
    getch();
    printf("Enter X and Y co-ordinates to Fill a circle using BOUNDRY-FILL : ");
    scanf("%d %d",&x1,&y1);
    boundfill8(x1,y1,BLUE,RED);
    getch();
    closegraph();
    restorecrtmode();
}
void boundfill8(int x,int y,int fill,int boundary)
{
    int current;
    current = getpixel(x,y);
    if( (current != boundary) && (current != fill) )
    {

        putpixel(x,y,fill);
        delay(2);
        boundfill8(x-1,y-1,fill,boundary);
        boundfill8(x,y-1,fill,boundary);
        boundfill8(x+1,y-1,fill,boundary);
        boundfill8(x-1,y,fill,boundary);
        boundfill8(x+1,y,fill,boundary);
        boundfill8(x-1,y+1,fill,boundary);
        boundfill8(x,y+1,fill,boundary);
        boundfill8(x+1,y+1,fill,boundary);

    }
}   

This is my code for the polygon filling in computer graphics.

I am getting this error-

Body has already been defined for function main()

I can't remove of it can't think of anything.Please rectify.Sorry for my bad english in advance.

share|improve this question

2 Answers

up vote 3 down vote accepted

I don't think that c++ likes you to have 2 main methods in your application

share|improve this answer
You don't think correctly :) – paulsm4 Sep 11 '12 at 19:13
@paulsm4 parenthesize your expression! :) – Drew Dormann Sep 11 '12 at 19:15
@paulsm4 I found the guy on the Internet who is wrong! That's you! – H2CO3 Sep 11 '12 at 19:18

You have 2 main functions there can only be one.

share|improve this answer
3  
Borgleader - isn't resistance futile? Won't the second "main()" be assimilated? – paulsm4 Sep 11 '12 at 19:14
1  
Borg invasion? I thought they were 2 threads – huseyin tugrul buyukisik Sep 11 '12 at 19:14
"We will add your biological and technological distinctiveness to our own"--->one thread says(graphics part). The other listens(main part). – huseyin tugrul buyukisik Sep 11 '12 at 19:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.