answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Color-code for saffron using opengl
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

What is the Telugu meaning of saffron?

saffron( colour ) - kaashayam saffron (spices) - kumkuma puvvu


Is Saffron a name?

Yes, Saffron is a name. A rare one, but it is a name.It's been around at least since the 60s when Donovan penned and performed "Mellow Yellow", and if you don't buy that one, consider the actress Saffron Burrows. (Actually, the name has been around a long time. It's just so unusual that it is rarely heard.) Links are provided to the two examples referenced. Those links can be found below.My name is Saffron, and it is a very rare name!Saffron is the threads of a type of crocus flowers, used as a spice and coloring in cooking.


What 2 colors together make saffron?

orange and red


How you can draw an ellipse in C language?

The C language does not provide any support for graphics as standard. C is designed to be as generic as possible, but graphics are a system-specific feature. To use graphics in C you need a third-party graphics library that supports your operating system and hardware, however generic libraries such as OpenGL are available. Nevertheless, it is not possible to draw curves, you can only approximate a curve using a series of short lines. The shorter the lines and the higher the resolution, the smoother the curve will appear. Assuming you have access to an OpenGL library, you can draw an ellipse as follows: void DrawEllipse(float cx, float cy, float rx, float ry, int num_segments) { const float pi = atan (1) * 4; float theta = 2 * pi / float (num_segments); float c = cosf (theta); float s = sinf (theta); float x = 1; float y = 0; float t; glBegin (GL_LINE_LOOP); for (int i = 0; i < num_segments; ++i) { glVertex2 f (x * rx + cx, y * ry + cy); t = x; x = c * x - s * y; y = s * t + c * y; } glEnd(); }


How can i find a measure of an angle?

By using a protractor or using trigonometry

Related questions

What do you call a person who sorts by color?

colorcode


Windows vista your opengl is not working it says that it is not supported by your comp and goes back to software mode what do you do to play in opengl or give you a link to fix your opengl?

In order to run OpenGL on Vista, you must download and install a program called GLDirect. This program allows you to run OpenGL-based games and other applications using your graphics card's DirectX drivers.


Files needed to run openGL program?

In order to run a OpenGL program, you must download and install a program called GLDirect. This program allows you to run OpenGL-based games and other applications using your graphics card's DirectX drivers.


Can you use opengl instead of a direct3d device?

You can't replace Direct3d with OpenGL because it's part of your computer. However you can run OpenGL programs or games by downloading and installing a program called GLDirect. This program allows you to run OpenGL-based games and other applications using your graphics card's DirectX drivers.


How do you you include opengl in c plus plus?

OpenGL is not software, it is a specification for cross-platform graphics rendering. All modern graphics cards support the OpenGL specification. In order to program with OpenGL you must first load the OpenGL function pointers. Although you can do this manually it's best to use a library specific to your hardware. Both nVidia and ATI provide their own libraries with tutorials. Remember that OpenGL is not software so there is no official SDK as such. There is no header file named 'opengl' (not officially at least). The OpenGL library headers typically use a gl prefix, such as gl.h, glut.h and glaux.h. The best place to start is by reading the FAQ provided by the official OpenGL website (see related links below). If you're using Windows, you also have the option of using the DirectX API rather than OpenGL. DirectX is not only easier to work with, it also provides support for audio, animation, networking, and so on. OpenGL is purely for graphics rendering but is cross-platform (DirectX only works with Windows).


How do you use saffron with rice?

Saffron is the most expensive spice in the world. Do you like to cook with saffron? How long do you soak saffron before using it?


How do you play openGL game i have 3d card nvdia Geforce fx 5200 with 128 mb ram but it doesnt play opengl game.?

In order to run OpenGL games, you must download and install a program called GLDirect. This program allows you to run OpenGL-based games and other applications using your graphics card's DirectX drivers.


How do you make CS Source to run in OpenGL mode?

You can play CS 1.6 in OpenGL mode by changing the video mode settings to OpenGL in the options menu or if you're running Vista or Windows 7, you can download and install a program called GLDirect. This program allows you to run OpenGL-based games and other applications using your graphics card's DirectX drivers.


How do you know what version of OpenGL is supported on a computer using c plus plus?

Call glGetString(GL_VERSION). This returns a null-terminated string containing the version information. If using OpenGL 3.0 or above, you can also call glGetIntegerv(GL_MAJOR_VERSION, *) and glGetIntegerv(GL_MINOR_VERSION, *).


How do you develop a chessboard in Opengl?

I want to draw stippled lines by openGL so how I can


How to set java for openGL?

Java has no native support for OpenGL. While there are some third-party attempts, I have yet to hear of one which completely implements OpenGL.


Opengl programming source code for pool game?

writ an opengl program for pool game