0
我是C++新手。我正在使用Visual Studio Professional 2010.我學會了繪製線條,但是這次我需要繪製填充的多邊形。我畫線的方式如下:如何使用C++繪製填充多邊形?
private: System::Void Form1_Paint(System::Object^ sender, System::Windows::Forms::PaintEventArgs^ e) {
Graphics ^g = e->Graphics; //require for drawing
g->DrawArc(Pens::Black, i-the_size/2, j-the_size/2, the_size, the_size, 0, 90);
g->DrawArc(Pens::Black, i+the_size/2, j+the_size/2, the_size, the_size, 180, 90);}
如何使用類似於我迄今瞭解到的技術繪製填充的多邊形?
請注意,C++和C++/CLI是不是把插入符的「圖形」,然後按F1以找出它可以做同樣的語言 – Zharf
。 –