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

/haiku/src/tests/servers/app/painter/
H A DPainter.h134 float xRadius,
139 float xRadius,
145 float xRadius,
150 float xRadius,
156 float xRadius,
163 float xRadius,
238 float xRadius,
H A DPainter.cpp626 Painter::StrokeRoundRect(const BRect& r, float xRadius, float yRadius, argument
634 _Transform(&xRadius);
639 rect.radius(xRadius, yRadius);
646 Painter::FillRoundRect(const BRect& r, float xRadius, float yRadius, argument
660 _Transform(&xRadius);
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, yRadiu
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.cpp94 float xRadius = width / 2.0; local
99 s.StrokeEllipse(center, xRadius * (i / (float)count),
150 float xRadius = 30.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.h179 BRect StrokeRoundRect(const BRect& r, float xRadius,
182 BRect FillRoundRect(const BRect& r, float xRadius,
184 BRect FillRoundRect(const BRect& r, float xRadius,
197 BRect StrokeArc(BPoint center, float xRadius,
201 BRect FillArc(BPoint center, float xRadius,
204 BRect FillArc(BPoint center, float xRadius,
H A DPainter.cpp1114 Painter::StrokeRoundRect(const BRect& r, float xRadius, float yRadius) const argument
1126 rect.radius(xRadius, yRadius);
1134 Painter::FillRoundRect(const BRect& r, float xRadius, float yRadius) const argument
1151 rect.radius(xRadius, yRadius);
1159 Painter::FillRoundRect(const BRect& r, float xRadius, float yRadius, argument
1177 rect.radius(xRadius, yRadius);
1209 float xRadius = r.Width() / 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, yRadiu
1236 float xRadius = r.Width() / 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.h409 void StrokeRoundRect(BRect rect, float xRadius,
412 void FillRoundRect(BRect rect, float xRadius,
415 void FillRoundRect(BRect rect, float xRadius,
418 void StrokeEllipse(BPoint center, float xRadius,
423 void FillEllipse(BPoint center, float xRadius,
428 void FillEllipse(BPoint center, float xRadius,
433 void StrokeArc(BPoint center, float xRadius,
440 void FillArc(BPoint center, float xRadius,
447 void FillArc(BPoint center, float xRadius,
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteDrawingEngine.h107 virtual void DrawRoundRect(BRect rect, float xRadius,
109 virtual void FillRoundRect(BRect rect, float xRadius,
H A DRemoteDrawingEngine.cpp693 RemoteDrawingEngine::DrawRoundRect(BRect rect, float xRadius, float yRadius, argument
707 message.Add(xRadius);
713 RemoteDrawingEngine::FillRoundRect(BRect rect, float xRadius, float yRadius, argument
723 message.Add(xRadius);
/haiku/src/servers/app/drawing/
H A DDrawingEngine.cpp726 float xRadius = r.Width() / 2.0; local
728 BPoint center(r.left + xRadius,
732 fPainter->FillArc(center, xRadius, yRadius, angle, span);
734 fPainter->StrokeArc(center, xRadius, yRadius, angle, span);
750 float xRadius = r.Width() / 2.0; local
752 BPoint center(r.left + xRadius,
755 fPainter->FillArc(center, xRadius, yRadius, angle, span, gradient);
/haiku/src/apps/remotedesktop/
H A DRemoteView.cpp957 float xRadius, yRadius; local
960 message.Read(xRadius);
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, 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.cpp2780 float xRadius; local
2783 link.Read<float>(&xRadius);
2789 drawingEngine->DrawRoundRect(rect, xRadius * scale, yRadius * scale,
/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js1481 var xRadius = remoteMessage.dataView.readFloat32();

Completed in 112 milliseconds