Ignore:
Timestamp:
2012/02/06 11:05:15 (12 years ago)
Author:
Seasoft
Message:

#1613 (ソース整形・ソースコメントの改善)

  • Zend Framework PHP 標準コーディング規約への準拠を高めた
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/graph/SC_GraphBar.php

    r21420 r21441  
    4040 
    4141        // 棒グラフの描画 
    42         for($i = 0; $i < $this->line_max; $i++) { 
     42        for ($i = 0; $i < $this->line_max; $i++) { 
    4343            $this->drawBar($i); 
    4444        } 
    4545 
    4646        // ラベルの描画 
    47         for($i = 0; $i < $this->line_max; $i++) { 
     47        for ($i = 0; $i < $this->line_max; $i++) { 
    4848            $this->drawLabel($i); 
    4949        } 
     
    6666        // 色数の取得 
    6767        $c_max = count($this->arrColor); 
    68         for($i = 0; $i < $count; $i++) { 
     68        for ($i = 0; $i < $count; $i++) { 
    6969            $left = $arrPointList[$i][0] - $half_scale + BAR_PAD + ($bar_width * $line_no); 
    7070            $top = $arrPointList[$i][1]; 
     
    7373 
    7474            // 影の描画 
    75             if($this->shade_on) { 
     75            if ($this->shade_on) { 
    7676                imagefilledrectangle($this->image, $left + 2, $top + 2, $right + 2, $bottom, $this->shade_color); 
    7777            } 
     
    8787        $arrPointList = $this->arrPointList[$line_no]; 
    8888        $count = count($arrPointList); 
    89         for($i = 0; $i < $count; $i++) { 
     89        for ($i = 0; $i < $count; $i++) { 
    9090            $x = $arrPointList[$i][0]; 
    9191            $y = $arrPointList[$i][1]; 
Note: See TracChangeset for help on using the changeset viewer.