Sets of labels for a node #73
Replies: 3 comments 9 replies
-
There is an alternative solution: allow functions to have aliases. They will look like this: |
Beta Was this translation helpful? Give feedback.
-
Also, although Python recommends ascii/English characters for names in Python, it is up to the users whether they decide using them or not. As long as the names are valid Python identifiers, it doesn't matter if they use non-ascii characters. Since Python itself doesn't restrict the characters used, I see no problem implementing this possibility in Nodezator as well (instead of just letting people write non-english characters in widgets and comments, like I said before on another discussion). However, this is something that will take time until I implement, because Nodezator has other priority features to be implemented before. But I'll keep all of this in mind and I do think people must have the option to choose whether they want to write their code in English or their mother tongue. |
Beta Was this translation helpful? Give feedback.
-
I will try another approach: build a database and generate node files from it. |
Beta Was this translation helpful? Give feedback.
-
There is a possibility of optimisation: aggregating formulae in the same structure.$X = (A+B) C/2$ :
For example, the node
(A+B)C/2
, or if following the Python 2's naming ruleopApBcpCs2
, which representsI hope to find a way to circumvent that naming restriction, so the node names are easily readable.
They can be aggregated to one node with two sets of labels in different languages:
Labels can be searched as well.
It saves plenty of work if implemented.
Beta Was this translation helpful? Give feedback.
All reactions