KHTML
Go to the documentation of this file.
24#include "wtf/Platform.h"
33SVGPathSegArcAbs::SVGPathSegArcAbs(
float x,
float y,
float r1,
float r2,
float angle,
bool largeArcFlag,
bool sweepFlag)
40 , m_largeArcFlag(largeArcFlag)
41 , m_sweepFlag(sweepFlag)
45SVGPathSegArcAbs::~SVGPathSegArcAbs()
49void SVGPathSegArcAbs::setX(
float x)
54float SVGPathSegArcAbs::x()
const
59void SVGPathSegArcAbs::setY(
float y)
64float SVGPathSegArcAbs::y()
const
69void SVGPathSegArcAbs::setR1(
float r1)
74float SVGPathSegArcAbs::r1()
const
79void SVGPathSegArcAbs::setR2(
float r2)
84float SVGPathSegArcAbs::r2()
const
89void SVGPathSegArcAbs::setAngle(
float angle)
94float SVGPathSegArcAbs::angle()
const
99void SVGPathSegArcAbs::setLargeArcFlag(
bool largeArcFlag)
101 m_largeArcFlag = largeArcFlag;
104bool SVGPathSegArcAbs::largeArcFlag()
const
106 return m_largeArcFlag;
109void SVGPathSegArcAbs::setSweepFlag(
bool sweepFlag)
111 m_sweepFlag = sweepFlag;
114bool SVGPathSegArcAbs::sweepFlag()
const
121SVGPathSegArcRel::SVGPathSegArcRel(
float x,
float y,
float r1,
float r2,
float angle,
bool largeArcFlag,
bool sweepFlag)
128 , m_largeArcFlag(largeArcFlag)
129 , m_sweepFlag(sweepFlag)
133SVGPathSegArcRel::~SVGPathSegArcRel()
137void SVGPathSegArcRel::setX(
float x)
142float SVGPathSegArcRel::x()
const
147void SVGPathSegArcRel::setY(
float y)
152float SVGPathSegArcRel::y()
const
157void SVGPathSegArcRel::setR1(
float r1)
162float SVGPathSegArcRel::r1()
const
167void SVGPathSegArcRel::setR2(
float r2)
172float SVGPathSegArcRel::r2()
const
177void SVGPathSegArcRel::setAngle(
float angle)
182float SVGPathSegArcRel::angle()
const
187void SVGPathSegArcRel::setLargeArcFlag(
bool largeArcFlag)
189 m_largeArcFlag = largeArcFlag;
192bool SVGPathSegArcRel::largeArcFlag()
const
194 return m_largeArcFlag;
197void SVGPathSegArcRel::setSweepFlag(
bool sweepFlag)
199 m_sweepFlag = sweepFlag;
202bool SVGPathSegArcRel::sweepFlag()
const
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Mon Feb 20 2023 00:00:00 by
doxygen 1.9.6 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.