Project background
Learning some woodworking a few months ago, I got into some design using a compass and straightedge. The tools required for this are very simple, and as such have been around for thousands of years, used for physical design from fine cabinet-making to large-scale architecture. Despite their simplicity, combinations of arcs and straight lines allow for a very powerful method for design and encourage in the designer an understanding of proportion and rhythms.
I was impressed when I came across https://sciencevsmagic.net/geo/ a little while ago, and after gaining a better understanding of the fundamentals of compass/straightedge construction with By Hound and Eye (Geo Walker and Jim Tolpin), I decided I should try to make a more complete desktop application to emulate this geometrical method of construction.

Goals
This is the first 'proper' desktop application I have attempted to build, so I'm likely to have overlooked some key/time-consuming features.
With that said, these are the main goals for the project:

Functional goals:
  • UI that emphasises drawing ease and speed with minimal input (primarily mouse-based)
  • Draw points, circles, arcs and lines
  • Drawing between intersections (and along lines) maintained as a central concept as with manual construction
  • Scalable, movable, rotatable canvas
  • Multiple layers
  • Export drawings in useful formats (.svg, .png...)


Technical goals:
  • Ability to create 'large' (more precise size TBD) drawings without slowdown
  • Programmed in C with minimal library usage (e.g. drawing functions all created 'by hand')
  • Support Windows from the start, probably support Linux as well


Project goals:
  • Write blog entries describing/explaining the design and implementation of major features (being fairly new to this, these will probably focus on overcoming the various problems I encounter along the way)
  • Provide access to most, if not all, source code (all the project-specific stuff is currently at https://github.com/azmr/geometer)
  • Provide at least the basic program free. I haven't decided whether a paid, 'advanced' version would be appropriate
  • Target user personas: woodworker designing furniture, mathematician demonstrating various geometric constructions


There are also a number of other ideas that I've been playing around with, but haven't yet decided upon whether they are worth including in the project. I'm sure these will be the topic of future blog posts.

Current status
There is currently a Windows executable with which one can draw points, circles, arcs and line segments on a single layer on a static canvas (no moving/zooming/rotating) within a non-resizable window. Points are automatically created at intersections and drawing snaps to points unless snapping is temporarily disabled. Undo/redo functionality has been implemented. Points can be deleted and moved around, but this is currently a little buggy. Drawings can currently only have a fixed number of points and shapes.

Roadmap
In roughly implementation order:
  • Draw lines
  • Draw circles
  • Index circles & lines on points
  • Snap to points (optional but on by default)
  • Line-line intersection
  • Line-circle intersection
  • Circle-circle intersection
  • Delete points
  • Move points
  • Undo function
  • Draw and intersect arcs
  • Panning
  • Zooming and rotation
  • Animate between changes in basis
  • Unlimited points/shapes
  • Faster way to implement multiple arcs/circles of the same radius
  • File saves/loading
  • More advanced undo system
  • Basic .png exports
  • Add text labels for points
  • Add layers and decide on how they can interact
  • Improved exports
  • Improve graphical representation (anti-aliasing, experiment with sweeps when moving the mouse quickly...)
  • Consider hardware rasterizer
  • Decide on and use a spatial partitioning method
  • Rays and/or lines
  • New and exciting features... (parametric editing? animation between states?! Who knows? Only time will tell...)