Can anyone help / teach me on how to build shapes, specifically face shapes, in c++?
We are assigned to build something like that and Im having a very big trouble abt. it. Any comment will do. Sites, Sample Programs, and just about anything connected to it.

The header file is:

#include<graph.h>

or

#include<graphics.h>

??


Thanks in Advance!

You can use graphics.h for drawing shapes(faces especially). There are many inbuilt functions in graphics.h. Some are rectangle,circle,line,ellipse etc,.

Sites, Sample Programs, and just about anything connected to it.

Well there are plenty of sample programs in the net.
The one below will draw a circle. Hope you are using borland version.

#include<graphics.h>
int main()
{circle(320,240,50);
 return(0);
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.