├── .gitignore ├── CMakeLists.txt ├── README.md ├── main.cpp ├── mandel.cpp ├── mandel.h ├── rainbow.cpp ├── rainbow.h └── stbiw ├── CMakeLists.txt └── stb_image_write.h /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | GNUmakefile 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallel101/hw01/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallel101/hw01/HEAD/README.md -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallel101/hw01/HEAD/main.cpp -------------------------------------------------------------------------------- /mandel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallel101/hw01/HEAD/mandel.cpp -------------------------------------------------------------------------------- /mandel.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void test_mandel(); 4 | -------------------------------------------------------------------------------- /rainbow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallel101/hw01/HEAD/rainbow.cpp -------------------------------------------------------------------------------- /rainbow.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void test_rainbow(); 4 | -------------------------------------------------------------------------------- /stbiw/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | message(FATAL_ERROR "请修改 stbiw/CMakeLists.txt!要求生成一个名为 stbiw 的库") 2 | -------------------------------------------------------------------------------- /stbiw/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallel101/hw01/HEAD/stbiw/stb_image_write.h --------------------------------------------------------------------------------