Tiny graphics library for STM32F746G-DISCO board

Dependents:   RadarDemo 3DDemo RadarDemoT

Revision:
3:1ddc4aa1e5cb
Parent:
2:02b7b78e8510
--- a/Canvas.h	Thu Nov 10 15:34:43 2016 +0000
+++ b/Canvas.h	Fri Nov 11 12:05:16 2016 +0000
@@ -128,6 +128,14 @@
     bool IsSet();
     
     /// <summary>
+    /// Draws single character using actual font type and size.
+    /// </summary>
+    /// <param name="posX">The position x.</param>
+    /// <param name="posY">The position y.</param>
+    /// <param name="ch">The character.</param>
+    void DrawChar(int posX, int posY, char ch);
+    
+    /// <summary>
     /// Draws the text using actual font type and size.
     /// </summary>
     /// <param name="posX">The position x.</param>
@@ -137,7 +145,7 @@
 
 private:
     /// <summary>
-    /// Resets this instance.
+    /// Resets canvas properties.
     /// </summary>
     void Reset();