MOS substitution: Difference between revisions

Inthar (talk | contribs)
Inthar (talk | contribs)
Line 211: Line 211:
== MOS substitution scales and RTT ==
== MOS substitution scales and RTT ==
== Pseudocode ==
== Pseudocode ==
<syntaxhighlight lang="py">
  def letterwise_subst(template_word, slot, filling_word):
  def letterwise_subst(template_word, slot, filling_word):
     result = ""
     result = ""
Line 230: Line 231:
     scale = subst_step_sizes(word, [sizeX, sizeY, sizeZ])
     scale = subst_step_sizes(word, [sizeX, sizeY, sizeZ])
     return scale
     return scale
</syntaxhighlight>


== Code ==
== Code ==