Sapoturge

Personal website

View the Project on GitHub

Feature Design: Transforms

Now that groups have been added, the next major feature I’ll be adding to Froggum is transforms. This is a brief description of what I plan to add for this; they will not necessarily be added in the same way as presented here.

Note: Froggum currently uses SVG 1.1; SVG 2 exists and Froggum will be updated to use that at some point. The spec quoted is for SVG 1.1.

From the Spec:

7.6 The transform attribute

The value of the transform attribute is a <transform-list>, which is defined as a list of transform definitions, which are applied in the order provided. The individual transform definitions are separated by whitespace and/or a comma. The available types of transform definitions include:

All numeric values are s.

Observations

Design in Froggum

Implementation

Transform will be a new data class, and every Element will have a Transform associated with it through a property, similar to the fill and stroke properties.

Since any transform can be represented by a translation, rotation, scale, and skew, they will be stored this way internally. They will be set to this form when loading from files, and stored in this order when saving. Any components that would have no effect (a scaling of 1, translation of 0, rotation of 0, or skew of 0) are not written out when saving. If all components have no effect, no transformation is output at all.

Only skews along the X axis will be used by Froggum.

When drawing elements, the element’s transformation will be applied before drawing, then restored afterward so it does not interfere with other elements. Coordinates will be transformed by the elements when checking for clicks.

Interface

By default, elements (other than groups) will not show handles for their transforms unless the transform is not the identity when loaded or it is explicitly enabled. It can be enabled on any element by clicking the hide/show transform button in the context menu.

Transforms have seven handles: one in each corner, one in the center, one outside to control rotation, and one to control skew. Moving the center handle adjusts only the translation component of the transformation. The outside handle only adjusts the rotation. The points on the outside of the rectangle can change both the translation and the scale of the transform. These points all act similarly to the corresponding handles on Arc segments. The skew handle starts aligned with the rotation handle, but can be moved perpendicularly to that axis to produce the intended skew.

Transform handles are blue, to differentiate them from the red path handles and green gradient handles.

For now, handles will only snap to the base grid, not to a transformed grid. Adding that ability is left for a future feature (which will likely be in this update, 0.3).