Assignment 2 Tutorial [part 1] - 6.837 Computer Graphics MIT OCW

preview_player
Показать описание
In this video I demonstrate how to get started with Assignment 2 for 6.837 Computer Graphics MIT OpenCourseWare.

6.837: Introduction to Computer Graphics (fall 2020):

fltk-1.3.2:




--------------------
If you enjoyed this, a coffee donation is appreciated:

Metaphysics Computing is a channel that tries to discuss and give perspective on the modern marvel of computers. The classic way to let me know I am doing a good job is by subscribing and clicking the bell icon to receive notifications on my latest videos.

Social media links:
Рекомендации по теме
Комментарии
Автор

You might get syntax errors while building the projects using VS 2022

if you want to fix it, find these three lines
at the top of the test/resizebox.cxx file:


#define W1 (big ? 60 : 40)
#define B 0
#define W3 (5*W1+6*B)
..and move them below all the #include lines, so those three lines appear here instead:
...
#include <FL/Fl.H>
#include <FL/Fl_Double_Window.H>
#include <FL/Fl_Box.H>
#include <FL/Fl_Radio_Button.H>
#include <FL/fl_draw.H>
#include <FL/fl_message.H>

#define W1 (big ? 60 : 40)
#define B 0
#define W3 (5*W1+6*B)
Fl_Double_Window *window;
Fl_Box *box;
...
That will solve that build error.

anvitpatil
welcome to shbcf.ru