SVGGraphics.SetPixel C# (CSharp) Method

SetPixel() public method

public SetPixel ( int x, int y ) : void
x int
y int
return void
    public void SetPixel(int x, int y)
    {
        device.SetPixel(x, y);
    }

Usage Example

コード例 #1
0
ファイル: SVGGraphicsFill.cs プロジェクト: xpcrts/UnitySVG
 private void FillInZone()
 {
     for (int i = inZoneL; i < subW + inZoneL; i++)
     {
         for (int j = inZoneT; j < subH + inZoneT; j++)
         {
             if (flag[i, j] != FILL_FLAG)
             {
                 graphics.SetPixel(i, j);
             }
         }
     }
 }
All Usage Examples Of SVGGraphics::SetPixel