A
A
Alexey Zus2015-08-28 12:27:55
Programming
Alexey Zus, 2015-08-28 12:27:55

C++. Work with graphics. When to start?

Good day! I recently started learning C++. In the future, work with UE. But first I would like to work with graphics in C ++ using its libraries. The question is: when can you start learning how to work with graphic libraries? Perhaps before working with any library you need to know the "base" in the language itself? Or study in parallel?
Thanks in advance! And I apologize if my question is incorrect!

Answer the question

In order to leave comments, you need to log in

5 answer(s)
S
Stanislav Makarov, 2015-08-28
@lexzus07

> Perhaps before working with any library you need to know the "basis" in the language itself?
It is quite logical that you need to know the language, the question is how complete (this is especially true for C ++, only the developers of the standard and compilers know it completely).
OpenGL (which I would advise you to look at) is essentially a C lib, so it's easier with it - learn what functions and pointers are, understand basic data types and operation features (so you don't wonder why 3 / 2 = 1, but 3.0 / 2.0 = 1.5) and you can try. From the general development - matrix algebra, features of computer arithmetic (floating point numbers, etc.). Well, the "graphics" itself - the graphics pipeline device, rendering types (photorealistic / real time), rendering stages, etc.
A separate task is to be able to configure the compiler and IDE so that everything that uses OpenGL compiles normally, but you can find this in Google.

S
sitev_ru, 2015-08-28
@sitev_ru

Yab immediately used a bunch of C ++ and UE! By the way, a counter-proposal, we study C++ and UE together and write a blog on this topic... My blog is idle) Well, how?

V
Vladimir Martyanov, 2015-08-28
@vilgeforce

First - the basics of the language and development environment. Do you already know how to include libraries?

D
Dmitry Demidov, 2015-08-28
@ptitca_zu

Excellent tutorial on this topic.

M
maaGames, 2015-08-28
@maaGames

There are no graphics libraries in C++.(

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question