OSDN Git Service

hk
[psychlops/cpp_document.git] / Psychlops.manual / sample_cpp_file / exam / Image_clear()1.cpp
1 #include <psychlops.h>
2 using namespace Psychlops;
3
4 double width=100,height=100;
5 Psychlops::Rectangle rect1(width,height);
6 Psychlops::Image Noise1(rect1);
7
8 void psychlops_main() {
9
10         Canvas sampleA(Canvas::fullscreen);
11         Noise1.clear(Color::magenta);
12         Noise1.draw();
13         sampleA.flip();
14         while(!Input::get(Keyboard::spc));
15 }