/[cvs]/nfo/php/libs/com.newsblob.phphtmllib/tag_utils/svg_utils.inc
ViewVC logotype

Diff of /nfo/php/libs/com.newsblob.phphtmllib/tag_utils/svg_utils.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by jonen, Sat Feb 22 21:08:08 2003 UTC revision 1.3 by jonen, Sat Sep 20 00:15:57 2003 UTC
# Line 97  function svg_circle($cx, $cy, $radius, $ Line 97  function svg_circle($cx, $cy, $radius, $
97          return $tag;          return $tag;
98  }  }
99    
100    /**
101     * This function is used for building an
102     * SVG <defs> tag
103     *
104     * @param mixed - any N number of params for
105     *                content for the tag
106     * @return DESCsvgtag object
107     */
108    function svg_defs() {
109            $tag = new DEFSsvgtag;
110            $args = func_get_args();
111        call_user_func_array( array(&$tag, "add"), $args);
112            return $tag;
113    }
114    
115  /**  /**
116   * This function is used for building an   * This function is used for building an

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed