dilevin / computer-graphics-raster-images

Computer Graphics Assignment about Raster Images
1 stars 7 forks source link

Helper functions in .cpp files? #25

Closed BlackSpade741 closed 4 years ago

BlackSpade741 commented 4 years ago

New to C++ so not 100% sure about this, but are we allowed to define helper functions, especially given that we are only supposed to submit .cpp files but not .h files? Do all extra functions need to be defined in header files?

songfeil commented 4 years ago

You're not submitting header files so do not modify them. I think it is possible to include only .cpp files or write helper functions inside the same file, but I personally recommend using lambda expressions to avoid linking errors.

BlackSpade741 commented 4 years ago

@songfeil Thanks!