diff --git a/.github/workflows/validate_build.yml b/.github/workflows/validate_build.yml new file mode 100644 index 0000000..98b0634 --- /dev/null +++ b/.github/workflows/validate_build.yml @@ -0,0 +1,12 @@ +name: Validate and Build the Extension +on: + push + +jobs: + validate_and_build: + runs-on: ubuntu-latest + steps: + - name: Validate and Build + uses: typemytype/roboFont-Extension-action@v0.1.0 + with: + autotagging: true \ No newline at end of file diff --git a/README.md b/README.md index 18b48b1..66c4e54 100644 --- a/README.md +++ b/README.md @@ -1,110 +1,4 @@ ScaleFast ========= -This extension’s mission is simple: keep stem widths consistent while you fiddle with proportions of a glyph. It manages that by trying to compensate for scale deformations through interpolation. To achieve this result, it requires at least two masters (a regular and a bold for instance). This way, you can easily produce scaled versions of existing glyph for any purpose you see fit, small capitals, superiors, extended or condensed styles, etc. -Any transformation you input can be saved as a preset for a later use. Presets are stored inside the ufo file of the selected working font (among masters). - -*The tool’s flexibility comes a great deal from its relying on [MutatorMath](https://github.com/LettError/MutatorMath), written by Erik van Blokland.* - -![alt tag](images/scalefast-1.png) -![alt tag](images/scalefast-2.png) -![alt tag](images/scalefast-3.png) -![alt tag](images/scalefast-4.png) - -## Table of Contents - -- [How it works](#how-it-works) -- [Scaling](#scaling) - - [Stems](#stems) - - [Modes](#modes) - - [Presets](#presets) - - [Guides](#guides) -- [Transformations](#transformations) - - [Offset](#offset) - - [Sticky](#sticky) - - [Tracking](#tracking) -- [Generating](#generating) - - [Current](#current) - - [Batch](#batch) - -## How it works - -To get the best possible results, here are a few explanations about how this extension works. - -The scaling is handled by a [scaling engine](https://github.com/loicsander/MutatorScale). When provided with fonts as masters, the scaling engine uses interpolation to scale glyphs according to settings defined by the user. In ScaleFast, adding or removing masters to the scaling engine is done by checking/unchecking the available fonts in the masters list. - -When you add masters (as many as you like), they are analyzed for vertical & horizontal stem width (based on capital I’s stem and the horizontal bar of H). These values are then used as reference points to build an interpolation space (with help of MutatorMath). If you don’t wish to work with stem values, you can replace them and work with units on any scale you like (0 to 1000 for instance). You should note however that this tool is built to work with stem widths, so if you work outside of this scheme, the script will work fine, but the experience won’t be as smooth. - -## Scaling - -With ScaleFast, what you scale firstly are reference heights. This is why you’ll find a slider and text input requiring a value in units (per em) and a popup menu with predefined reference heights. What you’re asking for when you input [xHeight]>[300] is effectively that ScaleFast reduces glyphs with a ratio of 300/500, if the xHeight is 500 units high, for instance. The ratio part is taken care of, all you need to know is the change in dimensions you want. This specific input used as an example will result in lowercase letters having a 300 units high xHeight themselves. - -### Stems - -As I mentioned earlier, the whole point of ScaleFast is allowing you to scale glyphs while defining the exact stem width (be it vertical or horizontal) you wish to obtain on the scaled glyphs. This being, be aware that scaled glyphs go through quite a lot of mathematical operations and rounding, so don’t be surprised if the results display some little inaccuracies (shouldn’t be beyond 2 or 3 units though). -The way you define stem values depends on the mode you’re working with. - -### Modes - -ScaleFast can work according to three modes, the default being isotropic. - -**Isotropic** - -This is the simplest interpolation, one that moves values linearly between two reference points, or masters. With this mode, the script will only be able to retain vertical stem width while you scale glyphs; which is not so bad to begin with. This means that serif thickness, for instance, will be smaller than the original size. With this mode, you can only define vertical stem values, which will define the interpolation factor between master stem values. If the masters stem values are accurate, the result will be as well. Only vertical stem width will be correct though. - -**Anisotropic** - -The anisotropic mode distinguishes interpolation on the X and Y axes. It provides the possibility of deformation along each of those two axes. Practically, it means that — to a certain extent — the script can compensate for reduction on the Y axis also and try to maintain horizontal stem width as well. Depending on the design, you might luckily not need to correct serif thickness or contrast. This mode requires two values for vertical and horizontal stems, with that and to the best of its capabilities, the tool will try to maintain these values for the stems of the scaled glyphs. Be aware that the result will strongly depend on your design, if you spot inconsistencies in size among the generated glyphs, please start by checking that these aren’t due to your masters’ stem widths. - -**Bi-dimensional** - -Being able to work in two-dimensional interpolation was the actual reason that pushed me to write this tool. Thanks to MutatorMath, handling interpolation along multiple axis has become incredibly easy, and it’s also incredibly powerful. The best use case (and the one I initially wrote this tool for) is the case of a contrasted type family with optical sizes. For type of which the weight evolves in the ‘usual’ way — that is to say relative contrast lessens while weight becomes heavier, effectively making horizontal stems thicker — working with isotropic or anisotropic interpolation will probably be sufficient to generate scaled glyphs that require little or no correction. - -But in the case of a family in which the thickness thin parts (serifs for instance) do not change with weight (random example: a Didot face), anisotropic interpolation can’t compensate anything because there’s no difference in contrast to work from. But if you have been working with optical sizes and your optical sizes are compatible for interpolation, then you do have a difference in contrast that can be put to good use. This situation allows you to work both with separate weight & contrast axes, and in that case you can use bi-dimensional interpolation to solve your scaling problems. To be honest, you could work out an an/isotropic interpolation scheme with your optical sizes, but that would be to the expense of much time spent generating intermediary masters. Not very practical. - -Now back to ScaleFast, if you provide at least three masters that allow the script to build a two axis interpolation scheme, then you can generate whatever scaled glyphs you need, and it’s actually the case in which the tool performs the best. - -To be more specific, this mode requires that at least two masters both share their horizontal stem values while having different vertical stem values, and that a a least one third master has an horizontal stem value different from the two others. -But don’t bother keeping that in mind, ScaleFast figures out on its own if it has all that is required for bi-dimensional interpolation, it will switch automatically to this mode if it can. - -### Presets - -Any settings you define can be store as a preset (through the right hand panel). Presets are stored in the selected working font, so they will stay in the UFO unless you remove them. - -![alt tag](images/scalefast-5.png) -![alt tag](images/scalefast-6.png) -![alt tag](images/scalefast-7.png) - -### Guides - -You can add custom guides that will be stored in the font and can be displayed to help with your scaling work. - -## Transformations - -### Offset - -On top of the scaling, you can defined X/Y offsets to be applied to all glyphs. - -### Sticky - -In combination with manual offsetting, there’s a helper ‘sticky’ option that allows you to define alignments for scaled glyph. If you’re working on superiors for instance and you wish to see them aligned with the capHeight, you only need to specify [top][capHeight]. Note that the second Pop-up menu will recognize any custom guide as well as the base vertical metrics of a font. - -### Tracking - -There are several things you can do about the spacing of the glyphs you scale. By default, the width of a scaled glyph is scaled as well. But if you’d rather avoid that, you can activate the ‘Keep inital sidebearings’ checkbox, the glyphs will be scaled but their sidebearings will remain those of the normally sized glyphs (using the source glyph of the selected master font as reference). -On top of that — spacing being scaled or not — you can add tracking, either in percentage or units (per em). Note that if you apply tracking with percentages, you will probably get undesired results with components (because handling those is rather tricky); it will work great for glyphs containing only contours though. - -## Generating - -You can generate any glyph set you want. The generated glyphs can then be directly reinserted into one of the existing masters, or another open font, or a new one created for the occasion. Additionally, you can suffix the generated glyphs. Note that if you reinsert generated glyphs in a existing font without suffixing glyph names, existing glyphs with the same name in the target font will be replaced. - -### Current - -This generates glyphs with the current settings and provided glyphset + suffix. - -### Batch - -You can also generate different glyphsets by using presets to define which settings should be applied to a specific series of glyphs. - -![alt tag](images/scalefast-8.png) -![alt tag](images/scalefast-9.png) +Documentation is [here](source/html/index.md) \ No newline at end of file diff --git a/ScaleFast.roboFontExt/html/index.html b/ScaleFast.roboFontExt/html/index.html deleted file mode 100644 index 7a6931d..0000000 --- a/ScaleFast.roboFontExt/html/index.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - -ScaleFast - - - - -

ScaleFast

-

This extension’s mission is simple: keep stem widths consistent while you fiddle with proportions of a glyph. It manages that by trying to compensate for scale deformations through interpolation. To achieve this result, it requires at least two masters (a regular and a bold for instance). This way, you can easily produce scaled versions of existing glyph for any purpose you see fit, small capitals, superiors, extended or condensed styles, etc. -Any transformation you input can be saved as a preset for a later use. Presets are stored inside the ufo file of the selected working font (among masters).

-

The tool’s flexibility comes a great deal from its relying on MutatorMath, written by Erik van Blokland.

-

alt tag -alt tag -alt tag -alt tag

-

Table of Contents

- -

How it works

-

To get the best possible results, here are a few explanations about how this extension works.

-

The scaling is handled by a scaling engine. When provided with fonts as masters, the scaling engine uses interpolation to scale glyphs according to settings defined by the user. In ScaleFast, adding or removing masters to the scaling engine is done by checking/unchecking the available fonts in the masters list.

-

When you add masters (as many as you like), they are analyzed for vertical & horizontal stem width (based on capital I’s stem and the horizontal bar of H). These values are then used as reference points to build an interpolation space (with help of MutatorMath). If you don’t wish to work with stem values, you can replace them and work with units on any scale you like (0 to 1000 for instance). You should note however that this tool is built to work with stem widths, so if you work outside of this scheme, the script will work fine, but the experience won’t be as smooth.

-

Scaling

-

With ScaleFast, what you scale firstly are reference heights. This is why you’ll find a slider and text input requiring a value in units (per em) and a popup menu with predefined reference heights. What you’re asking for when you input [xHeight]>[300] is effectively that ScaleFast reduces glyphs with a ratio of 300/500, if the xHeight is 500 units high, for instance. The ratio part is taken care of, all you need to know is the change in dimensions you want. This specific input used as an example will result in lowercase letters having a 300 units high xHeight themselves.

-

Stems

-

As I mentioned earlier, the whole point of ScaleFast is allowing you to scale glyphs while defining the exact stem width (be it vertical or horizontal) you wish to obtain on the scaled glyphs. This being, be aware that scaled glyphs go through quite a lot of mathematical operations and rounding, so don’t be surprised if the results display some little inaccuracies (shouldn’t be beyond 2 or 3 units though). -The way you define stem values depends on the mode you’re working with.

-

Modes

-

ScaleFast can work according to three modes, the default being isotropic.

-

Isotropic

-

This is the simplest interpolation, one that moves values linearly between two reference points, or masters. With this mode, the script will only be able to retain vertical stem width while you scale glyphs; which is not so bad to begin with. This means that serif thickness, for instance, will be smaller than the original size. With this mode, you can only define vertical stem values, which will define the interpolation factor between master stem values. If the masters stem values are accurate, the result will be as well. Only vertical stem width will be correct though.

-

Anisotropic

-

The anisotropic mode distinguishes interpolation on the X and Y axes. It provides the possibility of deformation along each of those two axes. Practically, it means that — to a certain extent — the script can compensate for reduction on the Y axis also and try to maintain horizontal stem width as well. Depending on the design, you might luckily not need to correct serif thickness or contrast. This mode requires two values for vertical and horizontal stems, with that and to the best of its capabilities, the tool will try to maintain these values for the stems of the scaled glyphs. Be aware that the result will strongly depend on your design, if you spot inconsistencies in size among the generated glyphs, please start by checking that these aren’t due to your masters’ stem widths.

-

Bi-dimensional

-

Being able to work in two-dimensional interpolation was the actual reason that pushed me to write this tool. Thanks to MutatorMath, handling interpolation along multiple axis has become incredibly easy, and it’s also incredibly powerful. The best use case (and the one I initially wrote this tool for) is the case of a contrasted type family with optical sizes. For type of which the weight evolves in the ‘usual’ way — that is to say relative contrast lessens while weight becomes heavier, effectively making horizontal stems thicker — working with isotropic or anisotropic interpolation will probably be sufficient to generate scaled glyphs that require little or no correction.

-

But in the case of a family in which the thickness thin parts (serifs for instance) do not change with weight (random example: a Didot face), anisotropic interpolation can’t compensate anything because there’s no difference in contrast to work from. But if you have been working with optical sizes and your optical sizes are compatible for interpolation, then you do have a difference in contrast that can be put to good use. This situation allows you to work both with separate weight & contrast axes, and in that case you can use bi-dimensional interpolation to solve your scaling problems. To be honest, you could work out an an/isotropic interpolation scheme with your optical sizes, but that would be to the expense of much time spent generating intermediary masters. Not very practical.

-

Now back to ScaleFast, if you provide at least three masters that allow the script to build a two axis interpolation scheme, then you can generate whatever scaled glyphs you need, and it’s actually the case in which the tool performs the best.

-

To be more specific, this mode requires that at least two masters both share their horizontal stem values while having different vertical stem values, and that a a least one third master has an horizontal stem value different from the two others. -But don’t bother keeping that in mind, ScaleFast figures out on its own if it has all that is required for bi-dimensional interpolation, it will switch automatically to this mode if it can.

-

Presets

-

Any settings you define can be store as a preset (through the right hand panel). Presets are stored in the selected working font, so they will stay in the UFO unless you remove them.

-

alt tag -alt tag -alt tag

-

Guides

-

You can add custom guides that will be stored in the font and can be displayed to help with your scaling work.

-

Transformations

-

Offset

-

On top of the scaling, you can defined X/Y offsets to be applied to all glyphs.

-

Sticky

-

In combination with manual offsetting, there’s a helper ‘sticky’ option that allows you to define alignments for scaled glyph. If you’re working on superiors for instance and you wish to see them aligned with the capHeight, you only need to specify [top][capHeight]. Note that the second Pop-up menu will recognize any custom guide as well as the base vertical metrics of a font.

-

Tracking

-

There are several things you can do about the spacing of the glyphs you scale. By default, the width of a scaled glyph is scaled as well. But if you’d rather avoid that, you can activate the ‘Keep inital sidebearings’ checkbox, the glyphs will be scaled but their sidebearings will remain those of the normally sized glyphs (using the source glyph of the selected master font as reference). -On top of that — spacing being scaled or not — you can add tracking, either in percentage or units (per em). Note that if you apply tracking with percentages, you will probably get undesired results with components (because handling those is rather tricky); it will work great for glyphs containing only contours though.

-

Generating

-

You can generate any glyph set you want. The generated glyphs can then be directly reinserted into one of the existing masters, or another open font, or a new one created for the occasion. Additionally, you can suffix the generated glyphs. Note that if you reinsert generated glyphs in a existing font without suffixing glyph names, existing glyphs with the same name in the target font will be replaced.

-

Current

-

This generates glyphs with the current settings and provided glyphset + suffix.

-

Batch

-

You can also generate different glyphsets by using presets to define which settings should be applied to a specific series of glyphs.

-

alt tag -alt tag

- - diff --git a/ScaleFast.roboFontExt/info.plist b/ScaleFast.roboFontExt/info.plist deleted file mode 100644 index e202ce1..0000000 --- a/ScaleFast.roboFontExt/info.plist +++ /dev/null @@ -1,37 +0,0 @@ - - - - - addToMenu - - - path - scaleFast.py - preferredName - ScaleFast - shortKey - - - - developer - Loïc Sander - developerURL - https://github.com/loicsander - html - - launchAtStartUp - 0 - mainScript - - name - ScaleFast - requiresVersionMajor - 3 - requiresVersionMinor - 2 - timeStamp - 1695153315 - version - 1.1 - - diff --git a/ScaleFast.roboFontExt/lib/dynamicParameters/License.txt b/ScaleFast.roboFontExt/lib/dynamicParameters/License.txt deleted file mode 100644 index c81f49c..0000000 --- a/ScaleFast.roboFontExt/lib/dynamicParameters/License.txt +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2014 Loïc Sander - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/build-html.py b/build-html.py deleted file mode 100644 index c5b953f..0000000 --- a/build-html.py +++ /dev/null @@ -1,67 +0,0 @@ -import os -import markdown -from markdown.extensions.toc import TocExtension - -baseFolder = os.getcwd() -readmePath = os.path.join(baseFolder, 'README.md') -extensionPath = os.path.join(baseFolder, 'ScaleFast.roboFontExt') - -# ------------- -# generate html -# ------------- - -htmlFolder = os.path.join(extensionPath, 'html') -htmlPath = os.path.join(htmlFolder, 'index.html') - -htmlTemplate = '''\ - - - - -ScaleFast - - - - -%s - - -''' - -with open(readmePath, mode="r", encoding="utf-8") as f: - markdownSource = f.read() - -M = markdown.Markdown(extensions=[TocExtension(permalink=True)]) -html = htmlTemplate % M.convert(markdownSource) - -with open(htmlPath, mode="w", encoding="utf-8") as htmlFile: - htmlFile.write(html) - -# ----------- -# copy images -# ----------- - -import shutil - -imgsFolder = os.path.join(baseFolder, 'images') -htmlImgsFolder = os.path.join(htmlFolder, 'images') - -for f in os.listdir(imgsFolder): - if not os.path.splitext(f)[-1] in ['.png', '.jpg', '.jpeg']: - continue - imgPath = os.path.join(imgsFolder, f) - shutil.copy2(imgPath, htmlImgsFolder) diff --git a/build.yaml b/build.yaml new file mode 100644 index 0000000..52242bf --- /dev/null +++ b/build.yaml @@ -0,0 +1,25 @@ +libFolder: source/lib +resourcesFolder: source/resources +htmlFolder: source/html +license: | + The MIT License (MIT) + + Copyright (c) 2014 Loïc Sander + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. diff --git a/info.yaml b/info.yaml new file mode 100644 index 0000000..4ab02c8 --- /dev/null +++ b/info.yaml @@ -0,0 +1,13 @@ +name: ScaleFast +developer: "Loïc Sander" +developerURL: https://github.com/loicsander +launchAtStartUp: false +mainScript: '' +version: '1.1' +addToMenu: +- path: scaleFast.py + preferredName: ScaleFast + shortKey: '' +html: true +requiresVersionMajor: '3' +requiresVersionMinor: '2' diff --git a/ScaleFast.roboFontExt/html/github-markdown.css b/source/html/github-markdown.css similarity index 100% rename from ScaleFast.roboFontExt/html/github-markdown.css rename to source/html/github-markdown.css diff --git a/ScaleFast.roboFontExt/html/images/example-scalefast-1.png b/source/html/images/example-scalefast-1.png similarity index 100% rename from ScaleFast.roboFontExt/html/images/example-scalefast-1.png rename to source/html/images/example-scalefast-1.png diff --git a/ScaleFast.roboFontExt/html/images/example-scalefast-2.png b/source/html/images/example-scalefast-2.png similarity index 100% rename from ScaleFast.roboFontExt/html/images/example-scalefast-2.png rename to source/html/images/example-scalefast-2.png diff --git a/ScaleFast.roboFontExt/html/images/example-scalefast-3.png b/source/html/images/example-scalefast-3.png similarity index 100% rename from ScaleFast.roboFontExt/html/images/example-scalefast-3.png rename to source/html/images/example-scalefast-3.png diff --git a/ScaleFast.roboFontExt/html/images/example-scalefast-4.png b/source/html/images/example-scalefast-4.png similarity index 100% rename from ScaleFast.roboFontExt/html/images/example-scalefast-4.png rename to source/html/images/example-scalefast-4.png diff --git a/ScaleFast.roboFontExt/html/images/example-scalefast-5.png b/source/html/images/example-scalefast-5.png similarity index 100% rename from ScaleFast.roboFontExt/html/images/example-scalefast-5.png rename to source/html/images/example-scalefast-5.png diff --git a/ScaleFast.roboFontExt/html/images/example-scalefast-6.png b/source/html/images/example-scalefast-6.png similarity index 100% rename from ScaleFast.roboFontExt/html/images/example-scalefast-6.png rename to source/html/images/example-scalefast-6.png diff --git a/ScaleFast.roboFontExt/html/images/example-scalefast-7.png b/source/html/images/example-scalefast-7.png similarity index 100% rename from ScaleFast.roboFontExt/html/images/example-scalefast-7.png rename to source/html/images/example-scalefast-7.png diff --git a/ScaleFast.roboFontExt/html/images/scalefast-1.png b/source/html/images/scalefast-1.png similarity index 100% rename from ScaleFast.roboFontExt/html/images/scalefast-1.png rename to source/html/images/scalefast-1.png diff --git a/ScaleFast.roboFontExt/html/images/scalefast-2.png b/source/html/images/scalefast-2.png similarity index 100% rename from ScaleFast.roboFontExt/html/images/scalefast-2.png rename to source/html/images/scalefast-2.png diff --git a/ScaleFast.roboFontExt/html/images/scalefast-3.png b/source/html/images/scalefast-3.png similarity index 100% rename from ScaleFast.roboFontExt/html/images/scalefast-3.png rename to source/html/images/scalefast-3.png diff --git a/ScaleFast.roboFontExt/html/images/scalefast-4.png b/source/html/images/scalefast-4.png similarity index 100% rename from ScaleFast.roboFontExt/html/images/scalefast-4.png rename to source/html/images/scalefast-4.png diff --git a/ScaleFast.roboFontExt/html/images/scalefast-5.png b/source/html/images/scalefast-5.png similarity index 100% rename from ScaleFast.roboFontExt/html/images/scalefast-5.png rename to source/html/images/scalefast-5.png diff --git a/ScaleFast.roboFontExt/html/images/scalefast-6.png b/source/html/images/scalefast-6.png similarity index 100% rename from ScaleFast.roboFontExt/html/images/scalefast-6.png rename to source/html/images/scalefast-6.png diff --git a/ScaleFast.roboFontExt/html/images/scalefast-7.png b/source/html/images/scalefast-7.png similarity index 100% rename from ScaleFast.roboFontExt/html/images/scalefast-7.png rename to source/html/images/scalefast-7.png diff --git a/ScaleFast.roboFontExt/html/images/scalefast-8.png b/source/html/images/scalefast-8.png similarity index 100% rename from ScaleFast.roboFontExt/html/images/scalefast-8.png rename to source/html/images/scalefast-8.png diff --git a/ScaleFast.roboFontExt/html/images/scalefast-9.png b/source/html/images/scalefast-9.png similarity index 100% rename from ScaleFast.roboFontExt/html/images/scalefast-9.png rename to source/html/images/scalefast-9.png diff --git a/source/html/index.md b/source/html/index.md new file mode 100644 index 0000000..18b48b1 --- /dev/null +++ b/source/html/index.md @@ -0,0 +1,110 @@ +ScaleFast +========= + +This extension’s mission is simple: keep stem widths consistent while you fiddle with proportions of a glyph. It manages that by trying to compensate for scale deformations through interpolation. To achieve this result, it requires at least two masters (a regular and a bold for instance). This way, you can easily produce scaled versions of existing glyph for any purpose you see fit, small capitals, superiors, extended or condensed styles, etc. +Any transformation you input can be saved as a preset for a later use. Presets are stored inside the ufo file of the selected working font (among masters). + +*The tool’s flexibility comes a great deal from its relying on [MutatorMath](https://github.com/LettError/MutatorMath), written by Erik van Blokland.* + +![alt tag](images/scalefast-1.png) +![alt tag](images/scalefast-2.png) +![alt tag](images/scalefast-3.png) +![alt tag](images/scalefast-4.png) + +## Table of Contents + +- [How it works](#how-it-works) +- [Scaling](#scaling) + - [Stems](#stems) + - [Modes](#modes) + - [Presets](#presets) + - [Guides](#guides) +- [Transformations](#transformations) + - [Offset](#offset) + - [Sticky](#sticky) + - [Tracking](#tracking) +- [Generating](#generating) + - [Current](#current) + - [Batch](#batch) + +## How it works + +To get the best possible results, here are a few explanations about how this extension works. + +The scaling is handled by a [scaling engine](https://github.com/loicsander/MutatorScale). When provided with fonts as masters, the scaling engine uses interpolation to scale glyphs according to settings defined by the user. In ScaleFast, adding or removing masters to the scaling engine is done by checking/unchecking the available fonts in the masters list. + +When you add masters (as many as you like), they are analyzed for vertical & horizontal stem width (based on capital I’s stem and the horizontal bar of H). These values are then used as reference points to build an interpolation space (with help of MutatorMath). If you don’t wish to work with stem values, you can replace them and work with units on any scale you like (0 to 1000 for instance). You should note however that this tool is built to work with stem widths, so if you work outside of this scheme, the script will work fine, but the experience won’t be as smooth. + +## Scaling + +With ScaleFast, what you scale firstly are reference heights. This is why you’ll find a slider and text input requiring a value in units (per em) and a popup menu with predefined reference heights. What you’re asking for when you input [xHeight]>[300] is effectively that ScaleFast reduces glyphs with a ratio of 300/500, if the xHeight is 500 units high, for instance. The ratio part is taken care of, all you need to know is the change in dimensions you want. This specific input used as an example will result in lowercase letters having a 300 units high xHeight themselves. + +### Stems + +As I mentioned earlier, the whole point of ScaleFast is allowing you to scale glyphs while defining the exact stem width (be it vertical or horizontal) you wish to obtain on the scaled glyphs. This being, be aware that scaled glyphs go through quite a lot of mathematical operations and rounding, so don’t be surprised if the results display some little inaccuracies (shouldn’t be beyond 2 or 3 units though). +The way you define stem values depends on the mode you’re working with. + +### Modes + +ScaleFast can work according to three modes, the default being isotropic. + +**Isotropic** + +This is the simplest interpolation, one that moves values linearly between two reference points, or masters. With this mode, the script will only be able to retain vertical stem width while you scale glyphs; which is not so bad to begin with. This means that serif thickness, for instance, will be smaller than the original size. With this mode, you can only define vertical stem values, which will define the interpolation factor between master stem values. If the masters stem values are accurate, the result will be as well. Only vertical stem width will be correct though. + +**Anisotropic** + +The anisotropic mode distinguishes interpolation on the X and Y axes. It provides the possibility of deformation along each of those two axes. Practically, it means that — to a certain extent — the script can compensate for reduction on the Y axis also and try to maintain horizontal stem width as well. Depending on the design, you might luckily not need to correct serif thickness or contrast. This mode requires two values for vertical and horizontal stems, with that and to the best of its capabilities, the tool will try to maintain these values for the stems of the scaled glyphs. Be aware that the result will strongly depend on your design, if you spot inconsistencies in size among the generated glyphs, please start by checking that these aren’t due to your masters’ stem widths. + +**Bi-dimensional** + +Being able to work in two-dimensional interpolation was the actual reason that pushed me to write this tool. Thanks to MutatorMath, handling interpolation along multiple axis has become incredibly easy, and it’s also incredibly powerful. The best use case (and the one I initially wrote this tool for) is the case of a contrasted type family with optical sizes. For type of which the weight evolves in the ‘usual’ way — that is to say relative contrast lessens while weight becomes heavier, effectively making horizontal stems thicker — working with isotropic or anisotropic interpolation will probably be sufficient to generate scaled glyphs that require little or no correction. + +But in the case of a family in which the thickness thin parts (serifs for instance) do not change with weight (random example: a Didot face), anisotropic interpolation can’t compensate anything because there’s no difference in contrast to work from. But if you have been working with optical sizes and your optical sizes are compatible for interpolation, then you do have a difference in contrast that can be put to good use. This situation allows you to work both with separate weight & contrast axes, and in that case you can use bi-dimensional interpolation to solve your scaling problems. To be honest, you could work out an an/isotropic interpolation scheme with your optical sizes, but that would be to the expense of much time spent generating intermediary masters. Not very practical. + +Now back to ScaleFast, if you provide at least three masters that allow the script to build a two axis interpolation scheme, then you can generate whatever scaled glyphs you need, and it’s actually the case in which the tool performs the best. + +To be more specific, this mode requires that at least two masters both share their horizontal stem values while having different vertical stem values, and that a a least one third master has an horizontal stem value different from the two others. +But don’t bother keeping that in mind, ScaleFast figures out on its own if it has all that is required for bi-dimensional interpolation, it will switch automatically to this mode if it can. + +### Presets + +Any settings you define can be store as a preset (through the right hand panel). Presets are stored in the selected working font, so they will stay in the UFO unless you remove them. + +![alt tag](images/scalefast-5.png) +![alt tag](images/scalefast-6.png) +![alt tag](images/scalefast-7.png) + +### Guides + +You can add custom guides that will be stored in the font and can be displayed to help with your scaling work. + +## Transformations + +### Offset + +On top of the scaling, you can defined X/Y offsets to be applied to all glyphs. + +### Sticky + +In combination with manual offsetting, there’s a helper ‘sticky’ option that allows you to define alignments for scaled glyph. If you’re working on superiors for instance and you wish to see them aligned with the capHeight, you only need to specify [top][capHeight]. Note that the second Pop-up menu will recognize any custom guide as well as the base vertical metrics of a font. + +### Tracking + +There are several things you can do about the spacing of the glyphs you scale. By default, the width of a scaled glyph is scaled as well. But if you’d rather avoid that, you can activate the ‘Keep inital sidebearings’ checkbox, the glyphs will be scaled but their sidebearings will remain those of the normally sized glyphs (using the source glyph of the selected master font as reference). +On top of that — spacing being scaled or not — you can add tracking, either in percentage or units (per em). Note that if you apply tracking with percentages, you will probably get undesired results with components (because handling those is rather tricky); it will work great for glyphs containing only contours though. + +## Generating + +You can generate any glyph set you want. The generated glyphs can then be directly reinserted into one of the existing masters, or another open font, or a new one created for the occasion. Additionally, you can suffix the generated glyphs. Note that if you reinsert generated glyphs in a existing font without suffixing glyph names, existing glyphs with the same name in the target font will be replaced. + +### Current + +This generates glyphs with the current settings and provided glyphset + suffix. + +### Batch + +You can also generate different glyphsets by using presets to define which settings should be applied to a specific series of glyphs. + +![alt tag](images/scalefast-8.png) +![alt tag](images/scalefast-9.png) diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/.gitignore b/source/lib/MutatorScale/.gitignore similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/.gitignore rename to source/lib/MutatorScale/.gitignore diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/LICENSE.txt b/source/lib/MutatorScale/LICENSE.txt similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/LICENSE.txt rename to source/lib/MutatorScale/LICENSE.txt diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/Readme.md b/source/lib/MutatorScale/Readme.md similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/Readme.md rename to source/lib/MutatorScale/Readme.md diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/images/mutatorScale-1.png b/source/lib/MutatorScale/images/mutatorScale-1.png similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/images/mutatorScale-1.png rename to source/lib/MutatorScale/images/mutatorScale-1.png diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/images/mutatorScale-2.png b/source/lib/MutatorScale/images/mutatorScale-2.png similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/images/mutatorScale-2.png rename to source/lib/MutatorScale/images/mutatorScale-2.png diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/images/mutatorScale-3.png b/source/lib/MutatorScale/images/mutatorScale-3.png similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/images/mutatorScale-3.png rename to source/lib/MutatorScale/images/mutatorScale-3.png diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/images/mutatorScale-4.png b/source/lib/MutatorScale/images/mutatorScale-4.png similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/images/mutatorScale-4.png rename to source/lib/MutatorScale/images/mutatorScale-4.png diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/images/mutatorScale-5.png b/source/lib/MutatorScale/images/mutatorScale-5.png similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/images/mutatorScale-5.png rename to source/lib/MutatorScale/images/mutatorScale-5.png diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/images/mutatorScale-6.png b/source/lib/MutatorScale/images/mutatorScale-6.png similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/images/mutatorScale-6.png rename to source/lib/MutatorScale/images/mutatorScale-6.png diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/__init__.py b/source/lib/MutatorScale/lib/__init__.py similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/__init__.py rename to source/lib/MutatorScale/lib/__init__.py diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/__init__.py b/source/lib/MutatorScale/lib/mutatorScale/__init__.py similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/__init__.py rename to source/lib/MutatorScale/lib/mutatorScale/__init__.py diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/objects/__init__.py b/source/lib/MutatorScale/lib/mutatorScale/objects/__init__.py similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/objects/__init__.py rename to source/lib/MutatorScale/lib/mutatorScale/objects/__init__.py diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/objects/errorGlyph.py b/source/lib/MutatorScale/lib/mutatorScale/objects/errorGlyph.py similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/objects/errorGlyph.py rename to source/lib/MutatorScale/lib/mutatorScale/objects/errorGlyph.py diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/objects/fonts.py b/source/lib/MutatorScale/lib/mutatorScale/objects/fonts.py similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/objects/fonts.py rename to source/lib/MutatorScale/lib/mutatorScale/objects/fonts.py diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/objects/mathGlyph.py b/source/lib/MutatorScale/lib/mutatorScale/objects/mathGlyph.py similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/objects/mathGlyph.py rename to source/lib/MutatorScale/lib/mutatorScale/objects/mathGlyph.py diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/objects/scaler.py b/source/lib/MutatorScale/lib/mutatorScale/objects/scaler.py similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/objects/scaler.py rename to source/lib/MutatorScale/lib/mutatorScale/objects/scaler.py diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/pens/__init__.py b/source/lib/MutatorScale/lib/mutatorScale/pens/__init__.py similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/pens/__init__.py rename to source/lib/MutatorScale/lib/mutatorScale/pens/__init__.py diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/pens/utilityPens.py b/source/lib/MutatorScale/lib/mutatorScale/pens/utilityPens.py similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/pens/utilityPens.py rename to source/lib/MutatorScale/lib/mutatorScale/pens/utilityPens.py diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/utilities/__init__.py b/source/lib/MutatorScale/lib/mutatorScale/utilities/__init__.py similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/utilities/__init__.py rename to source/lib/MutatorScale/lib/mutatorScale/utilities/__init__.py diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/utilities/fontUtils.py b/source/lib/MutatorScale/lib/mutatorScale/utilities/fontUtils.py similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/utilities/fontUtils.py rename to source/lib/MutatorScale/lib/mutatorScale/utilities/fontUtils.py diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/utilities/numbersUtils.py b/source/lib/MutatorScale/lib/mutatorScale/utilities/numbersUtils.py similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/mutatorScale/utilities/numbersUtils.py rename to source/lib/MutatorScale/lib/mutatorScale/utilities/numbersUtils.py diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/robofont-test.py b/source/lib/MutatorScale/lib/robofont-test.py similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/robofont-test.py rename to source/lib/MutatorScale/lib/robofont-test.py diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/test-no-UI.py b/source/lib/MutatorScale/lib/test-no-UI.py similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/test-no-UI.py rename to source/lib/MutatorScale/lib/test-no-UI.py diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/fontinfo.plist b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/fontinfo.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/fontinfo.plist rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/fontinfo.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/A_.glif b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/A_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/A_.glif rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/A_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/Aacute_.glif b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/Aacute_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/Aacute_.glif rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/Aacute_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/B_.glif b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/B_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/B_.glif rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/B_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/H_.glif b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/H_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/H_.glif rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/H_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/I_.glif b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/I_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/I_.glif rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/I_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/O_.glif b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/O_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/O_.glif rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/O_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/contents.plist b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/contents.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/contents.plist rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/glyphs/contents.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/lib.plist b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/lib.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/lib.plist rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/lib.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/metainfo.plist b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/metainfo.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/metainfo.plist rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/bold-mid-contrast.ufo/metainfo.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/fontinfo.plist b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/fontinfo.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/fontinfo.plist rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/fontinfo.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/A_.glif b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/A_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/A_.glif rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/A_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/Aacute_.glif b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/Aacute_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/Aacute_.glif rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/Aacute_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/B_.glif b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/B_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/B_.glif rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/B_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/H_.glif b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/H_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/H_.glif rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/H_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/I_.glif b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/I_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/I_.glif rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/I_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/O_.glif b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/O_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/O_.glif rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/O_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/contents.plist b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/contents.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/contents.plist rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/glyphs/contents.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/lib.plist b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/lib.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/lib.plist rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/lib.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/metainfo.plist b/source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/metainfo.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/metainfo.plist rename to source/lib/MutatorScale/lib/testFonts/isotropic-anisotropic/regular-mid-contrast.ufo/metainfo.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/fontinfo.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/fontinfo.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/fontinfo.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/fontinfo.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/A_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/A_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/A_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/A_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/Aacute_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/Aacute_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/Aacute_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/Aacute_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/B_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/B_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/B_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/B_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/H_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/H_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/H_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/H_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/I_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/I_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/I_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/I_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/O_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/O_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/O_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/O_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/contents.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/contents.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/contents.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/glyphs/contents.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/lib.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/lib.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/lib.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/lib.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/metainfo.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/metainfo.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/metainfo.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-high-contrast.ufo/metainfo.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/fontinfo.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/fontinfo.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/fontinfo.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/fontinfo.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/A_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/A_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/A_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/A_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/Aacute_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/Aacute_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/Aacute_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/Aacute_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/B_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/B_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/B_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/B_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/H_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/H_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/H_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/H_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/I_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/I_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/I_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/I_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/O_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/O_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/O_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/O_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/contents.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/contents.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/contents.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/glyphs/contents.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/lib.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/lib.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/lib.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/lib.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/metainfo.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/metainfo.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/metainfo.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-italic-low-contrast.ufo/metainfo.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/fontinfo.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/fontinfo.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/fontinfo.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/fontinfo.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/A_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/A_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/A_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/A_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/Aacute_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/Aacute_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/Aacute_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/Aacute_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/B_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/B_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/B_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/B_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/H_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/H_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/H_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/H_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/I_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/I_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/I_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/I_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/O_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/O_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/O_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/O_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/contents.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/contents.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/contents.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/glyphs/contents.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/lib.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/lib.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/lib.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/lib.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/metainfo.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/metainfo.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/metainfo.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/bold-low-contrast.ufo/metainfo.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/fontinfo.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/fontinfo.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/fontinfo.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/fontinfo.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/A_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/A_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/A_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/A_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/Aacute_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/Aacute_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/Aacute_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/Aacute_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/B_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/B_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/B_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/B_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/H_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/H_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/H_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/H_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/I_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/I_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/I_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/I_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/O_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/O_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/O_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/O_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/contents.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/contents.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/contents.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/glyphs/contents.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/lib.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/lib.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/lib.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/lib.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/metainfo.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/metainfo.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/metainfo.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-high-contrast.ufo/metainfo.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/fontinfo.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/fontinfo.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/fontinfo.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/fontinfo.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/A_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/A_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/A_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/A_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/Aacute_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/Aacute_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/Aacute_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/Aacute_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/B_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/B_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/B_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/B_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/H_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/H_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/H_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/H_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/I_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/I_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/I_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/I_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/O_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/O_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/O_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/O_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/contents.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/contents.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/contents.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/glyphs/contents.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/lib.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/lib.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/lib.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/lib.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/metainfo.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/metainfo.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/metainfo.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-italic-low-contrast.ufo/metainfo.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/fontinfo.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/fontinfo.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/fontinfo.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/fontinfo.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/A_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/A_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/A_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/A_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/Aacute_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/Aacute_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/Aacute_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/Aacute_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/B_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/B_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/B_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/B_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/H_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/H_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/H_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/H_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/I_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/I_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/I_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/I_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/O_.glif b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/O_.glif similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/O_.glif rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/O_.glif diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/contents.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/contents.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/contents.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/glyphs/contents.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/lib.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/lib.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/lib.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/lib.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/metainfo.plist b/source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/metainfo.plist similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/metainfo.plist rename to source/lib/MutatorScale/lib/testFonts/two-axes/regular-low-contrast.ufo/metainfo.plist diff --git a/ScaleFast.roboFontExt/lib/MutatorScale/setup.py b/source/lib/MutatorScale/setup.py similarity index 100% rename from ScaleFast.roboFontExt/lib/MutatorScale/setup.py rename to source/lib/MutatorScale/setup.py diff --git a/ScaleFast.roboFontExt/lib/__init__.py b/source/lib/__init__.py similarity index 100% rename from ScaleFast.roboFontExt/lib/__init__.py rename to source/lib/__init__.py diff --git a/License.txt b/source/lib/dynamicParameters/License.txt similarity index 100% rename from License.txt rename to source/lib/dynamicParameters/License.txt diff --git a/ScaleFast.roboFontExt/lib/dynamicParameters/README.md b/source/lib/dynamicParameters/README.md similarity index 100% rename from ScaleFast.roboFontExt/lib/dynamicParameters/README.md rename to source/lib/dynamicParameters/README.md diff --git a/ScaleFast.roboFontExt/lib/dynamicParameters/lib/dynamicParameters/__init__.py b/source/lib/dynamicParameters/lib/dynamicParameters/__init__.py similarity index 100% rename from ScaleFast.roboFontExt/lib/dynamicParameters/lib/dynamicParameters/__init__.py rename to source/lib/dynamicParameters/lib/dynamicParameters/__init__.py diff --git a/ScaleFast.roboFontExt/lib/dynamicParameters/lib/dynamicParameters/baseParameter.py b/source/lib/dynamicParameters/lib/dynamicParameters/baseParameter.py similarity index 100% rename from ScaleFast.roboFontExt/lib/dynamicParameters/lib/dynamicParameters/baseParameter.py rename to source/lib/dynamicParameters/lib/dynamicParameters/baseParameter.py diff --git a/ScaleFast.roboFontExt/lib/dynamicParameters/lib/dynamicParameters/parameterTest-Robofont.py b/source/lib/dynamicParameters/lib/dynamicParameters/parameterTest-Robofont.py similarity index 100% rename from ScaleFast.roboFontExt/lib/dynamicParameters/lib/dynamicParameters/parameterTest-Robofont.py rename to source/lib/dynamicParameters/lib/dynamicParameters/parameterTest-Robofont.py diff --git a/ScaleFast.roboFontExt/lib/dynamicParameters/lib/dynamicParameters/vanillaParameterObjects.py b/source/lib/dynamicParameters/lib/dynamicParameters/vanillaParameterObjects.py similarity index 100% rename from ScaleFast.roboFontExt/lib/dynamicParameters/lib/dynamicParameters/vanillaParameterObjects.py rename to source/lib/dynamicParameters/lib/dynamicParameters/vanillaParameterObjects.py diff --git a/ScaleFast.roboFontExt/lib/dynamicParameters/slider-parameters.png b/source/lib/dynamicParameters/slider-parameters.png similarity index 100% rename from ScaleFast.roboFontExt/lib/dynamicParameters/slider-parameters.png rename to source/lib/dynamicParameters/slider-parameters.png diff --git a/ScaleFast.roboFontExt/lib/scaleFast.py b/source/lib/scaleFast.py similarity index 100% rename from ScaleFast.roboFontExt/lib/scaleFast.py rename to source/lib/scaleFast.py