Home | History | Annotate | Download | only in svg

Lines Matching full:value

53         setCxBaseValue(SVGLength(LengthModeWidth, attr->value()));
55 setCyBaseValue(SVGLength(LengthModeHeight, attr->value()));
57 setRxBaseValue(SVGLength(LengthModeWidth, attr->value()));
58 if (rxBaseValue().value(this) < 0.0)
59 document()->accessSVGExtensions()->reportError("A negative value for ellipse <rx> is not allowed");
61 setRyBaseValue(SVGLength(LengthModeHeight, attr->value()));
62 if (ryBaseValue().value(this) < 0.0)
63 document()->accessSVGExtensions()->reportError("A negative value for ellipse <ry> is not allowed");
118 return Path::createEllipse(FloatPoint(cx().value(this), cy().value(this)),
119 rx().value(this), ry().value(this));