ladder-calculus/beamer/sea-of-types/sea-of-types-5-turns.dot

25 lines
689 B
Text
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

digraph SeaOfTypes {
Byte4 [label="[Byte; 4]", fontsize=12, shape=plaintext, color=lightgrey];
Byte8 [label="[Byte; 8]", fontsize=12, shape=plaintext, color=lightgrey];
IEEE754single [label="IEEE-754.single", fontsize=12, shape=plaintext, color=lightgrey];
IEEE754double [label="IEEE-754.double", fontsize=12, shape=plaintext, color=lightgrey];
Real [label="", fontsize=28, shape=plaintext];
Degrees [label="Degrees", fontsize=24, shape=plaintext];
Turns [label="Turns", fontsize=24, shape=plaintext];
IEEE754single -> Byte4
IEEE754double -> Byte8
Real -> IEEE754single
Real -> IEEE754double
Degrees -> Real
Turns -> Real
}