Ignore:
Timestamp:
2013/06/08 16:35:27 (11 years ago)
Author:
Seasoft
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.13.0)

  • 主に空白・空白行の調整。もう少し整えたいが、一旦現状コミット。
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/graph/SC_Graph_Base.php

    r22567 r22856  
    131131 * @version $Id$ 
    132132 */ 
    133 class SC_Graph_Base  
     133class SC_Graph_Base 
    134134{ 
    135  
    136     // {{{ properties 
    137  
    138135    var $arrRGB; 
    139136    var $arrColor; 
     
    396393        $this->arrLegend = array_values((array)$arrLegend); 
    397394    } 
    398  
    399     // }}} 
    400     // {{{ protected functions 
    401395 
    402396    /** 
     
    459453        $x = $cx + ($r * cos(deg2rad($s))); 
    460454        $y = $cy - (($r * sin(deg2rad($s))) * ($ch / $cw)); 
     455 
    461456        return array(round($x), round($y)); 
    462457    } 
     
    480475        } 
    481476        $ret = imagecolorallocate($image, $array[0], $array[1], $array[2]); 
     477 
    482478        return $ret; 
    483479    } 
     
    498494        } 
    499495        $ret = imagecolorallocate($image, $dark[0], $dark[1], $dark[2]); 
     496 
    500497        return $ret; 
    501498    } 
Note: See TracChangeset for help on using the changeset viewer.