- or download this
$x = f( $o->next ) + g( $o->next );
$y = f( $o->next ) - g( $o->next );
- or download this
$x = g( $o->next ) + f( $o->next );
$y = -g( $o->next ) + f( $o->next );
- or download this
my $temp1 = $o->next;
my $temp2 = $o->next;
...
$temp1 = $o->next;
$temp2 = $o->next;
$y = g( $temp1 ) - f( $temp2 );
- or download this
my $temp1 = $o->next;
my $temp2 = $o->next;
...
$temp1 = $o->next;
$temp2 = $o->next;
$y = f( $temp1 ) - g( $temp2 );