answersLogoWhite

0

If you mean how do you draw a curve in C++, you can't. C++ does not have any built-in graphics support of any kind. All graphics are platform-specific so, to be able to draw graphics, you need a graphics API and library suitable for your platform and hardware. As a result, the code you use will not be portable.

In most graphics libraries you will draw curves as a series of arcs, so you want to look up the arc() function in your library documentation.

User Avatar

Wiki User

11y ago

What else can I help you with?