Sapoturge

Personal website

View the Project on GitHub

Polygons, Polylines, and Conversions

It turns out I forgot about two “minor” feature I should add before the two major features I mentioned in the previous post.

Feature 1: Polylines and Polygons

Polylines and Polygons currently have a set number of “segments”. To allow changing this, I will add a new LinearSegment class that allows splitting itself to increase the number of segments in a Polyline or Polygon.

Design in Froggum

Checklist

Feature 2: Element Conversions

Most elements (not yet Lines and Polylines) have equivalent Path versions. It would be useful in many cases to allow converting elements to a more general format.

Design in Froggum

The following context menu options will be added:

All of these options replace the element with an equivalent element of a more general type. Only the most specific more general element type is an option, so converting a Circle to a Path, for example, requires converting to an Ellipse first.

Converting an element keeps the transform, fill, and stroke of the original.

All of these actions can be undone.

Checklist