Skip to content
Permalink
master
Switch branches/tags

Commits on Dec 9, 2020

  1. Merge pull request #21 from plusk01/cmake

    Polish up came config
    fbbdev committed Dec 9, 2020
  2. fix: cmake interface library

    plusk01 committed Dec 9, 2020

Commits on Mar 5, 2017

  1. Add alignment layout box

    fbbdev committed Mar 5, 2017
  2. Add label block

    fbbdev committed Mar 5, 2017

Commits on Feb 8, 2017

  1. Fix RealCanvas coordinate mapping

    Until now, given real upper bounds (bx, by), with underlying
    canvas size (sx, sy), coordinates bx and by would map directly
    to sx and sy, thus out of the underlying discrete canvas.
    
    This created some problems, for example a shape sized 1.0 on
    one of the dimensions would not fit a RealCanvas of size 1.0 on
    the same dimension.
    
    With this change, coordinates equal to the upper bounds will
    map to the last pixel of the canvas, thus bx -> (sx - 1) and
    by -> (sy - 1).
    fbbdev committed Feb 8, 2017
  2. ENH: Add cell size to braille

    One needs to know the cell size in order to compute
    the coordinates for the display.
    hjmjohnson authored and fbbdev committed Feb 8, 2017
  3. DOC: Provide verbose comments to describe output

    This is ment to clearly illustrate how the library is
    working.  The intent is to be verbose in the relationship
    that each value has relative to how it is used to affect
    the resulting output.
    hjmjohnson authored and fbbdev committed Feb 8, 2017
  4. DOC: Provide verbose color descriptions in code

    The original code has too many lists of numbers to be
    a good reference example.  By providing named colors
    the code becomes easier to understand and reconcile with
    the output displayed.
    hjmjohnson authored and fbbdev committed Feb 8, 2017

Commits on Feb 7, 2017

  1. Fix -Wshadow warnings in GCC 4.9

    If you see silly variable names and casual underscores
    here and there, it's because -Wshadow sucks in GCC 4.9.
    fbbdev committed Feb 7, 2017
Older