Leser: 13
QuoteZeichnen Sie den Graphen zu "y = - x hoch 2 + 5".
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# Main data, globally available: # Nun kapseln wir die Variablen in einer blessed Reference... # $main ist eine Instanz der Klasse main my $main = bless{ resx => 800, resy => 600, border => 30, fromx => -4, tox => 4, fromy => -11, toy => 11, xstep => 200, function => "- (x) ** 2 + 5", xzoomcenter => 0, yzoomcenter => 0, xtextspacing => 8, ytextspacing => 15, coordlinesteps => 5, coordfont => "Arial 8 normal" }, 'main';
2015-02-27T20:20:50 rostiLäuft!!! Sieht geil aus ;)
2015-02-27T20:20:50 rostiDie Variablen als Hash ist doch ein guter Ansatz, also besser als einzelne Vars. Wenn Du das kapseln willst: