answersLogoWhite

0


Best Answer

C++ is a generic, cross-platform programming language, while 3D graphics are platform-specific. To draw graphics of any kind you need a low-level API and library specific to your platform and hardware.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you do a 3D character like A using c plus plus 2010?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

When did Weight Watchers start using points?

Looks like they started with points in 1997. They switched to the points plus program in 2010.


How do you display del symbol on output screen using C Plus Plus?

The del character, #255, has no symbol. It is a non-printing character, so you cannot display it on the screen.


How do you define a symbol such as plus or - as a variable in python?

Use a character variable. For example: plus = '+' minus = '-' You can now refer to these symbols using the variable names "plus" or "minus".


Wild card character in c plus plus?

There is no wildcard character in C++.


How do you compare characters in c plus plus?

Characters are simply character codes, so they can be compared just like any other value. They can also be compared using literal character constants. The compiler will replace character literals with their equivalent character codes. char c = 'a'; // variable c is 0x61 (hex) or 97 (decimal). if( c 97 ){...} // true, 'a' is character code 97 decimal. if( c > 'b' ){...} // false, 'a' is not greater than 'b' (that is, 97 is not greater than 98).


What do children like in movies?

children like colorful movies and happy scences in the moves plus they like a show with a good character. plus they love it when the characters have a problem to solve and it teachs them a lesson


What is the use of c plus plus function atoi?

Converts a character to integer (if it is a numeric character)


What is 2010 plus 2010?

4020


How much 2010 plus 2010?

4020


Is there any keyword in c or c plus plus like the function inkey in qbasic?

Using TurboC? kbhit and getch are your friends


What is matissa?

The plus sign character, "+"


How do you display an exponential power symbol on the output screen using Borland C Plus?

Use the ^ (Shift 6) character usually called the Carrat Symbol.