Forum Replies Created
-
AuthorPosts
-
I found a way to speed up the brute force approach though. If you can use external Python modules:
from scipy import spatial tree = spatial.KDTree(t_list) # t_list is a list of pre-calculated point coordinate tuples on the cubic curve distance, index = tree.query(pt) # pt is the given point coordinate tuple t_for_pt = float(index) / (len(tree.data) - 1)
t_list must be constructed in a way that the first entry is for t = 0 and the last entry for t = 1. It doesn’t matter how many points for increments of t you calculate, as long as the index in t_list is proportional to t. Smaller increments of t increase the precision of the result, but the list takes longer to build.
I have looked for a solution to this myself, and actually ended up taking your numerical approach from the Glyphs plugin ;)
As I understand it, there may not be a solution to the equation if the given point is not exactly on the curve, which may already happen because floating point numbers are not exact. So you need to find t so that the distance of P(t) to the given point is minimized.
This stackexchange answer may be something, but I didn’t understand the stuff about inversions: https://math.stackexchange.com/a/535785
If you can make any sense of it, I am very interested :)
It seems the problem is that some of your layers are called 1, 2, 3. RoboFont doesn’t seem to like that. In the console, there’s this message:
RoboFont[14862]: -[OC_PythonNumber isEqualToString:]: unrecognized selector sent to instance 0x7fad4ce63150
Rename your layers in the inspector window, and the glyph window will open again.
Nice, thank you!
February 24, 2016 at 14:01 in reply to: [1.6] Crash when template glyphs with unicode > 0xffff should be displayed #6230The crash is only caused for template glyphs that are not in the font.
You could try to open the UFO without GUI, and then actually add the glyph to the font, so no placeholder will be displayed anymore:
f = OpenFont("/path/to/the.ufo", showUI=False) for glyphname in f.lib["public.glyphOrder"]: if glyphname.startswith("u") and int(glyphname[1:], 16) > 0xffff: if not glyphname in f: f.newGlyph(glyphname) f.save()
You can show and delete “hidden” data from an UFO with my RoboFont extension “UFO Cleaner”: https://github.com/jenskutilek/RoboFont/tree/master/Extensions
Same thing happened on my machine (10.9) when updating the FontTools in the site-packages folder. It seems some external modules are used by RoboFont when they are present, which causes some confusion in this case.
You could either delete the FontTools module in /Library/Python/2.7/site-packages or update the RoboFont-internal FontTools module (/Applications/RoboFont.app/Contents/Resources/lib/python2.7/fontTools) to the same version as in site-packages.
November 7, 2014 at 09:06 in reply to: [1.6] Crash when template glyphs with unicode > 0xffff should be displayed #6023Hi Frederik, here’s a demo UFO …
Meanwhile, I was able to work around the issue by editing my problematic UFO by hand.
Attachments:
You must be logged in to view attached files.November 6, 2014 at 17:32 in reply to: [1.6] Crash when template glyphs with unicode > 0xffff should be displayed #6021The console log is:
06.11.14 18:20:28,075 RoboFont[4880]: *** Terminating app due to uncaught exception 'OC_PythonException', reason: '<type 'exceptions.ValueError'>: unichr() arg not in range(0x10000) (narrow Python build)'
On the file system level, copy the
fontinfo.plist
from one UFO to the other.
Setting a kern pair to zero in fact deletes it: https://github.com/robofab-developers/robofab/blob/master/Lib/robofab/objects/objectsBase.py#L3119-L3121
I can think of at least one case in which you would want to differentiate between a value of 0 and a nonexisting kern value, which is when the kerning pair is an exception to a class pair.
g = CurrentGlyph() m = g.getLayer("mask") m.clear()
also works, but I don’t think it’s documented anywhere!?
clear()
also removes anchors and components.Something along these lines:
component_names = [component.baseGlyph for component in f[i].components] if not "K" in component_names: f[i].appendComponent("K")
Perhaps in this case it would be easier to write the feature code for the kern feature directly instead of using space center?
Great, thanks
-
AuthorPosts