Home
last modified time | relevance | path

Searched refs:designspace (Results 1 – 14 of 14) sorted by relevance

/external/fonttools/Lib/fontTools/varLib/
Dinterpolate_layout.py17 def interpolate_layout(designspace, loc, master_finder=lambda s:s, mapped=False): argument
30 if hasattr(designspace, "sources"): # Assume a DesignspaceDocument
34 designspace = DesignSpaceDocument.fromfile(designspace)
36 ds = load_designspace(designspace)
40 master_fonts = load_masters(designspace, master_finder)
D__init__.py700 def load_designspace(designspace): argument
703 if hasattr(designspace, "sources"): # Assume a DesignspaceDocument
704 ds = designspace
706 ds = DesignSpaceDocument.fromfile(designspace)
790 def build(designspace, master_finder=lambda s:s, exclude=[], optimize=True): argument
798 if hasattr(designspace, "sources"): # Assume a DesignspaceDocument
801 designspace = DesignSpaceDocument.fromfile(designspace)
803 ds = load_designspace(designspace)
807 master_fonts = load_masters(designspace, master_finder)
884 def load_masters(designspace, master_finder=lambda s: s): argument
[all …]
/external/fonttools/Doc/source/varLib/
Ddesignspace.rst2 designspace title
5 .. automodule:: fontTools.varLib.designspace
Dindex.rst8 designspace
/external/fonttools/Doc/source/designspaceLib/
Dscripting.rst2 Scripting a designspace
5 It can be useful to build a designspace with a script rather than
109 - The **location** attribute is a dictionary with the designspace
143 the designspace. For an instance you can define more things. If you want
200 # locations. It's a miniature designspace.
220 path = "myprototype.designspace"
227 Old designspace files might not contain ``axes`` definitions. This is
249 build("whatevs/myprototype.designspace")
Dreadme.rst21 - Need to expand the description of FDK use of designspace files.
23 The DesignSpaceDocument object can read and write ``.designspace`` data.
37 doc.read("some/path/to/my.designspace")
86 Rules describe designspace areas in which one glyph should be replaced by another.
362 <designspace format="3">
384 </designspace>
453 - Together these values transform the designspace.
527 - Defines a single font that contributes to the designspace.
573 - Child element of ``designspace`` and ``instance``
665 - Defines a single font that can be calculated with the designspace.
[all …]
Dindex.rst6 Since then the use of designspace has broadened and it would be useful
/external/fonttools/
DNEWS.rst76 - [varLib] Apply HIDDEN flag to fvar axis if designspace axis has attribute
131 instead of a designspace file path. The caller can now set the ``font``
132 attribute of designspace's sources to a TTFont object, thus allowing to
183 attributes are missing in designspace ``<rule>`` (#1366).
227 ``fontTools.varLib.designspace`` module is now deprecated and will be removed
304 designspace document. Bumped ``format`` attribute to ``4.0`` (previously,
328 - [designspace] Added a new optional ``layer`` attribute to the source element,
332 implemented in designspace reader/writer yet (#1254).
362 - [varLib.plot] Added new module to plot a designspace's
417 - [designspaceLib] Added an optional ``lib`` element to the designspace as a
[all …]
Dsetup.cfg58 ignore::DeprecationWarning:fontTools.varLib.designspace
DMANIFEST.in33 recursive-include Tests *.xml *.designspace *.bin
DPKG-INFO493 - [varLib] Apply HIDDEN flag to fvar axis if designspace axis has attribute
548 instead of a designspace file path. The caller can now set the ``font``
549 attribute of designspace's sources to a TTFont object, thus allowing to
600 attributes are missing in designspace ``<rule>`` (#1366).
644 ``fontTools.varLib.designspace`` module is now deprecated and will be removed
721 designspace document. Bumped ``format`` attribute to ``4.0`` (previously,
745 - [designspace] Added a new optional ``layer`` attribute to the source element,
749 implemented in designspace reader/writer yet (#1254).
779 - [varLib.plot] Added new module to plot a designspace's
834 - [designspaceLib] Added an optional ``lib`` element to the designspace as a
[all …]
/external/fonttools/Lib/fonttools.egg-info/
DPKG-INFO493 - [varLib] Apply HIDDEN flag to fvar axis if designspace axis has attribute
548 instead of a designspace file path. The caller can now set the ``font``
549 attribute of designspace's sources to a TTFont object, thus allowing to
600 attributes are missing in designspace ``<rule>`` (#1366).
644 ``fontTools.varLib.designspace`` module is now deprecated and will be removed
721 designspace document. Bumped ``format`` attribute to ``4.0`` (previously,
745 - [designspace] Added a new optional ``layer`` attribute to the source element,
749 implemented in designspace reader/writer yet (#1254).
779 - [varLib.plot] Added new module to plot a designspace's
834 - [designspaceLib] Added an optional ``lib`` element to the designspace as a
[all …]
DSOURCES.txt78 Doc/source/varLib/designspace.rst
341 Tests/designspaceLib/data/test.designspace
1424 Tests/varLib/data/Build.designspace
1425 Tests/varLib/data/BuildAvarEmptyAxis.designspace
1426 Tests/varLib/data/BuildAvarIdentityMaps.designspace
1427 Tests/varLib/data/BuildAvarSingleAxis.designspace
1428 Tests/varLib/data/BuildGvarCompositeExplicitDelta.designspace
1429 Tests/varLib/data/FeatureVars.designspace
1430 Tests/varLib/data/InterpolateLayout.designspace
1431 Tests/varLib/data/InterpolateLayout2.designspace
[all …]
/external/fonttools/Tests/designspaceLib/
Ddesignspace_test.py906 designspace = DesignSpaceDocument.fromstring(designspace_string)
907 assert designspace.findDefault().filename == "Font-Italic.ufo"