ofc_bar_sketch.php 459 B

1234567891011121314151617181920212223
  1. <?php
  2. include_once 'ofc_bar_base.php';
  3. class bar_sketch extends bar_base
  4. {
  5. function bar_sketch( $colour, $outline_colour, $fun_factor )
  6. {
  7. $this->type = "bar_sketch";
  8. parent::bar_base();
  9. $this->set_colour( $colour );
  10. $this->set_outline_colour( $outline_colour );
  11. $this->offset = $fun_factor;
  12. }
  13. function set_outline_colour( $outline_colour )
  14. {
  15. $tmp = 'outline-colour';
  16. $this->$tmp = $outline_colour;
  17. }
  18. }