This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const golden_ratio = 0.618033988749895; | |
| function getRandomInt(max) | |
| { | |
| return Math.floor(Math.random() * Math.floor(max)); | |
| } | |
| function ColorAbc() | |
| { | |
| var htmlOut = " "; | |
| var randomNr = Math.random(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| % preambel: | |
| \documentclass[tikz]{standalone}% andere Klassen sind möglich | |
| \usepackage{tikz} | |
| \usetikzlibrary{shapes% | |
| ,shapes.misc% | |
| ,shapes.symbols% | |
| ,positioning% | |
| } | |
| \begin{document} |