Searched refs:yRadius (Results 1 - 13 of 13) sorted by relevance

/haiku/src/tests/servers/app/painter/
H A DPainter.h135 float yRadius,
140 float yRadius,
146 float yRadius,
151 float yRadius,
157 float yRadius,
164 float yRadius,
239 float yRadius,
H A DPainter.cpp626 Painter::StrokeRoundRect(const BRect& r, float xRadius, float yRadius, argument
635 _Transform(&yRadius);
639 rect.radius(xRadius, yRadius);
646 Painter::FillRoundRect(const BRect& r, float xRadius, float yRadius, argument
661 _Transform(&yRadius);
665 rect.radius(xRadius, yRadius);
672 Painter::StrokeEllipse(BPoint center, float xRadius, float yRadius, argument
675 _DrawEllipse(center, xRadius, yRadius, p, false);
680 Painter::FillEllipse(BPoint center, float xRadius, float yRadius, argument
683 _DrawEllipse(center, xRadius, yRadius,
688 StrokeArc(BPoint center, float xRadius, float yRadius, float angle, float span, const pattern& p) const argument
707 FillArc(BPoint center, float xRadius, float yRadius, float angle, float span, const pattern& p) const argument
1133 _DrawEllipse(BPoint center, float xRadius, float yRadius, const pattern& p, bool fill) const argument
[all...]
H A Dmain.cpp95 float yRadius = height / 2.0; local
100 yRadius * (i / (float)count), pat);
151 float yRadius = 20.0; local
186 s.StrokeEllipse(center, xRadius, yRadius, kDottedBigger);
189 s.FillArc(center, xRadius * 2, yRadius * 2, 40.0, 230.0);
190 // s.StrokeArc(center, xRadius * 2, yRadius * 2, 40.0, 230.0);
193 s.StrokeEllipse(center, xRadius * 3, yRadius * 2);
194 // s.FillEllipse(center, xRadius * 3, yRadius * 2);
/haiku/src/servers/app/drawing/Painter/
H A DPainter.h180 float yRadius) const;
183 float yRadius) const;
185 float yRadius,
198 float yRadius, float angle,
202 float yRadius, float angle,
205 float yRadius, float angle, float span,
H A DPainter.cpp1114 Painter::StrokeRoundRect(const BRect& r, float xRadius, float yRadius) const
1126 rect.radius(xRadius, yRadius);
1134 Painter::FillRoundRect(const BRect& r, float xRadius, float yRadius) const
1151 rect.radius(xRadius, yRadius);
1159 Painter::FillRoundRect(const BRect& r, float xRadius, float yRadius, argument
1177 rect.radius(xRadius, yRadius);
1210 float yRadius = r.Height() / 2.0; local
1211 BPoint center(r.left + xRadius, r.top + yRadius);
1213 int32 divisions = (int32)((xRadius + yRadius + 2 * fPenSize) * M_PI / 2);
1219 agg::ellipse path(center.x, center.y, xRadius, yRadius, division
1237 float yRadius = r.Height() / 2.0; local
1254 StrokeArc(BPoint center, float xRadius, float yRadius, float angle, float span) const argument
1275 FillArc(BPoint center, float xRadius, float yRadius, float angle, float span) const argument
1312 FillArc(BPoint center, float xRadius, float yRadius, float angle, float span, const BGradient& gradient) argument
[all...]
/haiku/headers/os/interface/
H A DView.h410 float yRadius,
413 float yRadius,
416 float yRadius, const BGradient& gradient);
419 float yRadius,
424 float yRadius,
429 float yRadius, const BGradient& gradient);
434 float yRadius, float startAngle,
441 float yRadius, float startAngle,
448 float yRadius, float startAngle,
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteDrawingEngine.h108 float yRadius, bool filled);
110 float yRadius, const BGradient& gradient);
H A DRemoteDrawingEngine.cpp693 RemoteDrawingEngine::DrawRoundRect(BRect rect, float xRadius, float yRadius, argument
708 message.Add(yRadius);
713 RemoteDrawingEngine::FillRoundRect(BRect rect, float xRadius, float yRadius, argument
724 message.Add(yRadius);
/haiku/src/servers/app/drawing/
H A DDrawingEngine.cpp727 float yRadius = r.Height() / 2.0; local
729 r.top + yRadius);
732 fPainter->FillArc(center, xRadius, yRadius, angle, span);
734 fPainter->StrokeArc(center, xRadius, yRadius, angle, span);
751 float yRadius = r.Height() / 2.0; local
753 r.top + yRadius);
755 fPainter->FillArc(center, xRadius, yRadius, angle, span, gradient);
/haiku/src/apps/remotedesktop/
H A DRemoteView.cpp957 float xRadius, yRadius; local
961 if (message.Read(yRadius) != B_OK)
965 offscreen->StrokeRoundRect(rect, xRadius, yRadius,
969 offscreen->FillRoundRect(rect, xRadius, yRadius, pattern);
975 offscreen->FillRoundRect(rect, xRadius, yRadius,
/haiku/src/kits/interface/
H A DView.cpp3335 BView::StrokeEllipse(BPoint center, float xRadius, float yRadius, argument
3338 StrokeEllipse(BRect(center.x - xRadius, center.y - yRadius,
3339 center.x + xRadius, center.y + yRadius), pattern);
3360 BView::FillEllipse(BPoint center, float xRadius, float yRadius, argument
3363 FillEllipse(BRect(center.x - xRadius, center.y - yRadius,
3364 center.x + xRadius, center.y + yRadius), pattern);
3369 BView::FillEllipse(BPoint center, float xRadius, float yRadius, argument
3372 FillEllipse(BRect(center.x - xRadius, center.y - yRadius,
3373 center.x + xRadius, center.y + yRadius), gradient);
3410 BView::StrokeArc(BPoint center, float xRadius, float yRadius, floa argument
3438 FillArc(BPoint center,float xRadius, float yRadius, float startAngle, float arcAngle, ::pattern pattern) argument
3447 FillArc(BPoint center,float xRadius, float yRadius, float startAngle, float arcAngle, const BGradient& gradient) argument
3764 StrokeRoundRect(BRect rect, float xRadius, float yRadius, ::pattern pattern) argument
3783 FillRoundRect(BRect rect, float xRadius, float yRadius, ::pattern pattern) argument
3803 FillRoundRect(BRect rect, float xRadius, float yRadius, const BGradient& gradient) argument
[all...]
/haiku/src/servers/app/
H A DServerWindow.cpp2781 float yRadius; local
2784 if (link.Read<float>(&yRadius) != B_OK)
2789 drawingEngine->DrawRoundRect(rect, xRadius * scale, yRadius * scale,
/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js1482 var yRadius = remoteMessage.dataView.readFloat32();

Completed in 105 milliseconds