有誰知道任何代碼來呈現橢圓在C#中的數組?我看了一下,找不到解決我問題的任何事情。渲染的點都填充和非填充橢圓陣列在C#
考慮以下數組:
bool[,] pixels = new bool[100, 100];
我正在尋找的功能來呈現這兩個矩形區域內的空心填充的橢圓。 e.g:
public void Ellipse(bool[,] pixels, Rectangle area)
{
// fill pixels[x,y] = true here for the ellipse within area.
}
public void FillEllipse(bool[,] pixels, Rectangle area)
{
// fill pixels[x,y] = true here for the ellipse within area.
}
Ellipse(pixels, new Rectangle(20, 20, 60, 60));
FillEllipse(pixels, new Rectangle(40, 40, 20, 20));
任何幫助將不勝感激。
在開始時你說'有誰知道任何代碼來呈現一個數組的橢圓'然後你說'給定下面的數組... 我正在尋找函數來呈現一個空心和填充橢圓'。你是否想將一個橢圓變成一個「bool [,]'或者'bool [,]'到一個空心或橢圓形的橢圓? – 3aw5TZetdf