Skip to main content
The AI Math Notes interface is designed to be simple and intuitive, allowing you to focus on drawing and solving mathematical equations.

Canvas

The main drawing area is a 1200x800 pixel canvas where you can draw mathematical equations with your mouse.
The canvas has a black background with white drawing color for optimal contrast and readability.

Drawing Mechanics

You can draw equations by clicking and dragging on the canvas:
  • Click and hold the left mouse button to start drawing
  • Drag to create lines with a 5-pixel width
  • Release to finish the current stroke
Each stroke you draw is tracked as a separate action, which enables the undo functionality.

Control Buttons

The interface includes three essential buttons located at the bottom of the window:
The Clear button removes all content from the canvas and resets the drawing area.
def clear(self):
    self.canvas.delete("all")
    self.image = Image.new("RGB", (self.canvas_width, self.canvas_height), (0, 0, 0))
Use this when you want to start fresh with a new equation.

Answer Display

When the AI calculates your equation, the answer is displayed:
  • Position: 70 pixels to the right and 20 pixels above the last point you drew
  • Color: Orange (#FF9500) for clear visibility against the black background
  • Font: Noteworthy at 100pt size for a handwritten aesthetic
The application assumes the last thing you drew is the equals sign, so make sure to draw the = symbol last before clicking Calculate.

Window Title

The application window displays “AI Math Notes” as its title, making it easy to identify in your taskbar or when switching between applications.

Build docs developers (and LLMs) love