cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
How to draw a point in C++?
How to draw a point in C++?
Oct 5, 2015 at 7:57am UTC
nurik06
(2)
how can i make a point on screen by mouse click ? which platform i should use in mac ?
Oct 5, 2015 at 11:34am UTC
LB
(13399)
You want a graphics library like SFML:
http://www.sfml-dev.org/
Oct 5, 2015 at 8:15pm UTC
Ericool
(522)
first of , the platform will determine mostly which library to use . Two things , you need to interpret on the screen (output) what you receive in the code from the mouse(input).
Oct 5, 2015 at 9:07pm UTC
ResidentBiscuit
(4459)
the platform will determine mostly which library to use
Or cross platform library, as LB posted.
Two things, you need to interpret on the screen (output) what you receive in the code from the mouse(input)
This makes no sense. Is sounds like one 'thing', not two, and it is gibberish.
Oct 6, 2015 at 10:45am UTC
nurik06
(2)
do you suggest appropriate platform ? can i do that in visual studio ? is that possible with OpenGL library ?
Oct 6, 2015 at 1:24pm UTC
LB
(13399)
You can use any platform you want.
SFML is indeed compatible with Visual Studio 2015.
SFML uses OpenGL behind the scenes, and even lets you interact with OpenGL directly.
Topic archived. No new replies allowed.