Jens K.

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 26 total)
  • Author
    Posts

  • Jens K.
    Participant

    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.


    Jens K.
    Participant

    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 :)

    in reply to: Not able to open glyphs in glyph edit window #6272

    Jens K.
    Participant

    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.

    in reply to: Contextual Menu in font view? #6259

    Jens K.
    Participant

    Nice, thank you!


    Jens K.
    Participant

    The 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()
    
    in reply to: Remove hinting in an ufo? #6214

    Jens K.
    Participant

    You can show and delete “hidden” data from an UFO with my RoboFont extension “UFO Cleaner”: https://github.com/jenskutilek/RoboFont/tree/master/Extensions

    in reply to: Error when saving any ufo #6185

    Jens K.
    Participant

    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.


    Jens K.
    Participant

    Hi 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.

    Jens K.
    Participant

    The 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)'

    in reply to: Font Info #5938

    Jens K.
    Participant

    On the file system level, copy the

    fontinfo.plist

    from one UFO to the other.

    in reply to: remove kerning pair #5933

    Jens K.
    Participant

    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.

    in reply to: Clearing Glyph #5817

    Jens K.
    Participant
    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.

    in reply to: Checking for component objects. #5765

    Jens K.
    Participant

    Something along these lines:

    component_names = [component.baseGlyph for component in f[i].components]
    if not "K" in component_names:
        f[i].appendComponent("K")
    
    in reply to: Right to Left Kerning #5546

    Jens K.
    Participant

    Perhaps in this case it would be easier to write the feature code for the kern feature directly instead of using space center?

    in reply to: Handling selection in a Custom Tool #5491

    Jens K.
    Participant

    Great, thanks

Viewing 15 posts - 1 through 15 (of 26 total)