OSDN Git Service

hk
[psychlops/cpp_document.git] / Psychlops.manual / sample_cpp_file / exam / Image_line()1.cpp
1 #include <psychlops.h>
2 using namespace Psychlops;
3
4 Psychlops::Image Noise1(500,500);
5
6 void psychlops_main() {
7
8         Canvas sampleA(Canvas::fullscreen);
9         Noise1.line(100,100,200,200,Color::red);
10         Noise1.draw();
11         sampleA.flip();
12         while(!Input::get(Keyboard::spc));
13 }