KHTML
Go to the documentation of this file.
23 #ifndef SVGPathSegMoveto_h
24 #define SVGPathSegMoveto_h
31 class SVGPathSegMovetoAbs :
public SVGPathSeg {
33 static PassRefPtr<SVGPathSegMovetoAbs>
create(
float x,
float y) {
return adoptRef(
new SVGPathSegMovetoAbs(x, y)); }
34 virtual ~SVGPathSegMovetoAbs();
36 virtual unsigned short pathSegType()
const {
return PATHSEG_MOVETO_ABS; }
37 virtual String pathSegTypeAsLetter()
const {
return "M"; }
47 SVGPathSegMovetoAbs(
float x,
float y);
53 class SVGPathSegMovetoRel :
public SVGPathSeg {
55 static PassRefPtr<SVGPathSegMovetoRel>
create(
float x,
float y) {
return adoptRef(
new SVGPathSegMovetoRel(x, y)); }
56 virtual ~SVGPathSegMovetoRel();
58 virtual unsigned short pathSegType()
const {
return PATHSEG_MOVETO_REL; }
59 virtual String pathSegTypeAsLetter()
const {
return "m"; }
69 SVGPathSegMovetoRel(
float x,
float y);
This file is part of the KDE documentation.
Documentation copyright © 1996-2013 The KDE developers.
Generated on Tue Apr 16 2013 21:10:49 by
doxygen 1.8.3.1 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.