Hello,
Malen mit PHP, HTML und CSS
http://selfhtml.bitworks.de/grafik/sinus.phpAus deinem Beispiel schließe ich, dass du einen etwas anderen Lösungsansatz gewählt hast. Du erhöhst nicht den Winkel sondern den x-Wert und errechnest daraus den zugehörigen y-Wert.
ja.
Ich poste einfach mal das grausige Script...
<?php ### sinus.php ###
function make_point($x,$y,$class)
{
$point = "<span class="$class" style="".
"Top:".round($y)."px; Left:".round($x)."px;"></span>\n";
return $point;
}
#------------------------------------------------------------------------------
$curve = '';
$y = 0;
for ($x = (float)0; $x < 720; $x+=1.0 )
{
$y_neu = round((sin(deg2rad($x))*150)+200);
#if ($y_neu != $y)
{
$curve .= make_point($x, $y_neu,'sinus');
}
#$y = $y_neu;
}
$line = '';
for ($x = (float)0; $x < 720; $x+=2.0 )
{
$line .= make_point($x, 200, 'line');
}
$circle = '';
$r = 100.0;
$r2 = $r*$r;
for ($x = -$r; $x <= $r; $x++)
{
$x2 = $x*$x;
$circle .= make_point($x + 100, 200.0 + sqrt($r2 - $x2), 'kreis');
$circle .= make_point($x + 100, 200.0 - sqrt($r2 - $x2), 'kreis');
}
###############################################################################
HTML-Output
###############################################################################
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<TITLE>Sinus-Kurve</TITLE>
<style type="text/css">
<!--
.sinus
{
position:absolute;
font-size:1px;
width:1px;
height:1px;
background-color:red;
}
.kreis
{
position:absolute;
font-size:1px;
width:1px;
height:1px;
background-color:blue;
}
.line
{
position:absolute;
font-size:1px;
width:1px;
height:1px;
background-color:black;
}
-->
</style>
</HEAD>
<BODY>
<?php echo "\n".$curve; ?>
<?php echo "\n".$line; ?>
<?php echo "\n".$circle; ?>
</BODY>
</HTML>
Harzliche Grüße vom Berg
http://bergpost.annerschbarrich.de
Tom
Fortschritt entsteht nur durch die Auseinandersetzung der Kreativen
Nur selber lernen macht schlau
Ein Jammer ist auch, dass die Dummen so selbstsicher und die Klugen voller Zweifel sind. Das sollte uns häufiger zweifeln lassen :-)