コード例 #1
0
ファイル: SnapsEngine.cs プロジェクト: mzamp27/source
 /// <summary>
 /// Sets the color of successive drawing actions
 /// </summary>
 /// <param name="red">red intensity in range 0-255. Value is clamped in this range.</param>
 /// <param name="green">green intensity in range 0-255. Value is clamped in this range.</param>
 /// <param name="blue">blue intensity in range 0-255. Value is clamped in this range.</param>
 public static void SetDrawingColor(int red, int green, int blue)
 {
     manager.SetDrawingColor(red, green, blue);
 }