Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Question: is there a unique "best" encoding for each character? #10

Open
eweitnauer opened this issue Apr 11, 2019 · 1 comment
Open

Comments

@eweitnauer
Copy link

eweitnauer commented Apr 11, 2019

Very cool project!

I was wondering if you have any thoughts on how unique the description for a character in your system is. There are obviously several ways to describe each character (e.g. by "zooming out"), but maybe there is always a "best" or most condensed way. What is your experience in encoding the characters so far? Have there been cases where two encoding options seemed equally good, or cases where you used different encoding for the same component to make it work in different contexts?

Here is an example of encoding a component in two different ways, side by side:
image

PS: Let me know if there is a better place to ask questions like this, e.g. some chat server!

@LingDong-
Copy link
Owner

Hi eweitnauer,

Good question! I usually choose the more concise way to encode the characters when there are multiple options, as long as it doesn’t cause confusion/ugliness.

Additionally, some components that doesn’t have apparent horizontal/vertical structure can be encoded either using “row-major” (1-2)|(3-4) or “column major” (1|3)-(2|4). In these situations, if the components is often packed horizontally with other components, I will use column major and vice versa to make the result look nicer. For example, the strokes in (1|3)-(2|4)-(5|6) look more well-proportioned than ((1-2)|(3-4))-(5|6).

PS. Please feel free to discuss in Issues, usually I reply faster but sorry I was having a busy last week :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants