dilevin / computer-graphics-csc317

Course Page for Computer Graphics course
125 stars 24 forks source link

After running ./raster, no raster.sln file appears in build. #61

Closed grandrx10 closed 2 weeks ago

grandrx10 commented 3 weeks ago

I have already ran build and ./raster but no raster.sln file is appearing, is there anything I should be aware about?

Zhecheng-Wang commented 3 weeks ago

Please post questions regarding A1 to Github Issue of A1 in the future. What's your OS? If you are on Linux/Mac, this is expected, there shouldn't be any sln. If you can build ./raster, you don't have to worry about the sln file. Sln file is just project file for Visual Studio users. We recommend VS for students on Windows because it generally makes building CMake (or C++ graphics project) easier.

grandrx10 commented 3 weeks ago

Oh sorry about posting this in the wrong section. I am using Ubuntu, which explains why I didn't get a sln file.

I am still a little confused on how to get the resulting images from ./raster. Where can I get the information on how to use ./raster? Perhaps I missed something major?

Zhecheng-Wang commented 3 weeks ago

Right, so you need to implement write to ppm first, then it will output ppm images when you run ./raster.

grandrx10 commented 3 weeks ago

Ah, I think I understand. I must have written write to ppm incorrectly, and thus the file does not appear when I run ./raster. I will go give it a look over.