Giter Site home page Giter Site logo

hlotvonen / glyph-drawing-club Goto Github PK

View Code? Open in Web Editor NEW
67.0 67.0 5.0 14.61 MB

GlyphDrawing.club is an online text art and modular design editor.

Home Page: http://www.glyphdrawing.club/

License: MIT License

HTML 0.86% JavaScript 94.52% CSS 4.62%

glyph-drawing-club's People

Contributors

davelab6 avatar hlotvonen avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

glyph-drawing-club's Issues

Remove RFNs

Would you consider removing the RFNs from the OFL font data?

RFN makes the fork/merge process of Github much harder than it needs to be, and forces subsets to change family names too .

Update React scripts

And replace

                return (
			<div>
			{rawSvgCellBg({glyphInvertedColor})}
			{rawSvgCell({
				glyphPath,
				svgWidth,
				svgHeight,
				svgBaseline,
				glyphOffsetX,
				glyphFontSizeModifier,
				rotationAmount,
				flipGlyph,
				glyphInvertedColor,
				glyphOffsetY,
			})}
			</div>
		)

with react fragments <>, when updated to at least React 16.0

Tooltips

Would be useful to have tooltips. For example

  • Notify if the users has typing mode on
  • Notify if the user has Caps lock on

Revamp Keyboard shortcuts

Using hooks maybe?
Like this for example:

export function useKeydown(key, handler) {
  useEffect(
    () => {
      const cb = e => e.key === key && handler(e);
      document.body.addEventListener('keydown', cb);
      return () => {
        document.body.removeEventListener('keydown', cb);
      };
    },
    [key, handler]
  );
}

Color tool

  • Edit background and foreground colors separately. Each cell has one background color and one foreground color.
  • Save and load color palettes
  • Fast risograph workflow (each color could have riso color percentages assigned, and users could export risolayers automatically.)
  • Color editing (hex / rgb)
  • Coloring tools (paint brush, keyboard shortcuts for both individual and selection area)

Layers

It would eliminate the need for many glyphs in Tesserae by making it possible to combine multiple shapes on top of one cell. See example here: https://codepen.io/heikkilotvonen/pen/XoGbNx?editors=1000

  • Each cell would have it's own layer (instead of the canvas having multiple layers).
  • Each layer could be rotated and flipped
  • Each cell would have one background color and one front color
  • Each cell could be rotated, flipped and inverted (so that each layer gets the same transformation)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.