KHTML
Go to the documentation of this file.
23 #ifndef SVGPathSegLineto_h
24 #define SVGPathSegLineto_h
31 class SVGPathSegLinetoAbs :
public SVGPathSeg {
33 static PassRefPtr<SVGPathSegLinetoAbs>
create(
float x,
float y) {
return adoptRef(
new SVGPathSegLinetoAbs(x, y)); }
34 virtual ~SVGPathSegLinetoAbs();
36 virtual unsigned short pathSegType()
const {
return PATHSEG_LINETO_ABS; }
37 virtual String pathSegTypeAsLetter()
const {
return "L"; }
47 SVGPathSegLinetoAbs(
float x,
float y);
53 class SVGPathSegLinetoRel :
public SVGPathSeg {
55 static PassRefPtr<SVGPathSegLinetoRel>
create(
float x,
float y) {
return adoptRef(
new SVGPathSegLinetoRel(x, y)); }
56 virtual ~SVGPathSegLinetoRel();
58 virtual unsigned short pathSegType()
const {
return PATHSEG_LINETO_REL; }
59 virtual String pathSegTypeAsLetter()
const {
return "l"; }
69 SVGPathSegLinetoRel(
float x,
float y);
This file is part of the KDE documentation.
Documentation copyright © 1996-2013 The KDE developers.
Generated on Fri Jul 12 2013 08:56:07 by
doxygen 1.8.3.1 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.