Help for this page

Select Code to Download


  1. or download this
    # draw a skewed rectange for each data-point
    
    ...
    # \-+-/ \+/
    #   |    |
    # $ppd   - $consts{slant}
    
  2. or download this
    if ($params->{dim} == 3) {
      my $face = GD::Polygon->new;
    ...
      C: $top->addPt($x_pos + $ppd, $yi + $slant_height);
      $image->filledPolygon($top,$hist_top{"@$cRGB"});
    }