Searched refs:center (Results 1 - 25 of 68) sorted by relevance

123

/haiku/headers/os/interface/
H A DGradientConic.h22 BGradientConic(const BPoint& center,
28 void SetCenter(const BPoint& center);
H A DGradientDiamond.h22 BGradientDiamond(const BPoint& center);
26 void SetCenter(const BPoint& center);
H A DGradientRadial.h22 BGradientRadial(const BPoint& center,
28 void SetCenter(const BPoint& center);
H A DGradientRadialFocus.h22 BGradientRadialFocus(const BPoint& center,
28 void SetCenter(const BPoint& center);
H A DAffineTransform.h94 const BAffineTransform& RotateBy(const BPoint& center,
100 BAffineTransform RotateByCopy(const BPoint& center,
107 const BAffineTransform& ScaleBy(const BPoint& center,
110 const BAffineTransform& ScaleBy(const BPoint& center, double x,
113 const BAffineTransform& ScaleBy(const BPoint& center,
119 BAffineTransform ScaleByCopy(const BPoint& center,
122 BAffineTransform ScaleByCopy(const BPoint& center,
125 BAffineTransform ScaleByCopy(const BPoint& center,
133 const BAffineTransform& ShearBy(const BPoint& center, double x,
136 const BAffineTransform& ShearBy(const BPoint& center,
[all...]
/haiku/src/kits/interface/
H A DGradientConic.cpp25 BGradientConic::BGradientConic(const BPoint& center, float angle) argument
27 fData.conic.cx = center.x;
28 fData.conic.cy = center.y;
54 BGradientConic::SetCenter(const BPoint& center) argument
56 fData.conic.cx = center.x;
57 fData.conic.cy = center.y;
H A DGradientDiamond.cpp24 BGradientDiamond::BGradientDiamond(const BPoint& center) argument
26 fData.diamond.cx = center.x;
27 fData.diamond.cy = center.y;
51 BGradientDiamond::SetCenter(const BPoint& center) argument
53 fData.diamond.cx = center.x;
54 fData.diamond.cy = center.y;
H A DGradientRadial.cpp25 BGradientRadial::BGradientRadial(const BPoint& center, float radius) argument
27 fData.radial.cx = center.x;
28 fData.radial.cy = center.y;
54 BGradientRadial::SetCenter(const BPoint& center) argument
56 fData.radial.cx = center.x;
57 fData.radial.cy = center.y;
H A DGradientRadialFocus.cpp27 BGradientRadialFocus::BGradientRadialFocus(const BPoint& center, float radius, argument
30 fData.radial_focus.cx = center.x;
31 fData.radial_focus.cy = center.y;
62 BGradientRadialFocus::SetCenter(const BPoint& center) argument
64 fData.radial_focus.cx = center.x;
65 fData.radial_focus.cy = center.y;
H A DAffineTransform.cpp276 BAffineTransform::RotateBy(const BPoint& center, double angle) argument
278 TranslateBy(-center.x, -center.y);
280 return TranslateBy(center.x, center.y);
294 BAffineTransform::RotateByCopy(const BPoint& center, double angle) const argument
297 copy.RotateBy(center, angle);
306 BAffineTransform::ScaleBy(const BPoint& center, double scale) argument
308 return ScaleBy(center, scale, scale);
313 BAffineTransform::ScaleBy(const BPoint& center, doubl argument
329 ScaleBy(const BPoint& center, const BPoint& scale) argument
343 ScaleByCopy(const BPoint& center, double scale) const argument
359 ScaleByCopy(const BPoint& center, double x, double y) const argument
375 ScaleByCopy(const BPoint& center, const BPoint& scale) const argument
415 ShearBy(const BPoint& center, double x, double y) argument
431 ShearBy(const BPoint& center, const BPoint& shear) argument
447 ShearByCopy(const BPoint& center, double x, double y) const argument
465 ShearByCopy(const BPoint& center, const BPoint& shear) const argument
[all...]
/haiku/src/libs/glut/
H A Dglutstroke.h32 float center; member in struct:__anon1828
/haiku/src/apps/networkstatus/
H A DRadioView.cpp95 BPoint center; local
98 _Compute(rect, center, count, maxCount, step);
102 _DrawBow(view, i, center, count, step);
153 BPoint center; local
156 _Compute(Bounds(), center, count, fMax, step); local
163 _DrawBow(this, i, center, count, step);
182 BPoint center; local
185 _Compute(Bounds(), center, count, fMax, step); local
194 RadioView::_Compute(const BRect& bounds, BPoint& center, int32& count, argument
197 center
211 _DrawBow(BView* view, int32 index, const BPoint& center, int32 count, float step) argument
[all...]
H A DRadioView.h44 static void _Compute(const BRect& bounds, BPoint& center,
47 const BPoint& center, int32 count,
/haiku/src/apps/showimage/
H A DProgressWindow.h30 bool center = false);
/haiku/headers/libs/agg/
H A Dagg_trans_warp_magnifier.h32 void center(double x, double y) { m_xc = x; m_yc = y; } function in class:agg::trans_warp_magnifier
/haiku/src/servers/app/
H A DSimpleTransform.h126 BPoint center = radial->Center(); local
127 Apply(&center);
128 radial->SetCenter(center);
136 BPoint center = radialFocus->Center(); local
138 Apply(&center);
140 radialFocus->SetCenter(center);
148 BPoint center = diamond->Center(); local
149 Apply(&center);
150 diamond->SetCenter(center);
157 BPoint center local
[all...]
/haiku/src/tests/servers/app/gradients/
H A Dmain.cpp89 BPoint center(50, 50);
91 BGradientRadial g(center, radius);
94 view->FillEllipse(center, radius, radius, g);
118 BGradientRadial go(center, radius);
121 view->FillEllipse(center, radius, radius, go);
153 view->FillEllipse(center, radius, radius, g);
/haiku/headers/private/print/
H A DTemplate.h47 virtual void StrokeArc(BPoint center, BPoint radii, float startTheta, float arcTheta);
48 virtual void FillArc(BPoint center, BPoint radii, float startTheta, float arcTheta);
49 virtual void StrokeEllipse(BPoint center, BPoint radii);
50 virtual void FillEllipse(BPoint center, BPoint radii);
H A DPictureIterator.h53 virtual void StrokeArc(BPoint center, BPoint radii, float startTheta, float arcTheta) { } argument
54 virtual void FillArc(BPoint center, BPoint radii, float startTheta, float arcTheta) { } argument
55 virtual void StrokeEllipse(BPoint center, BPoint radii) { } argument
56 virtual void FillEllipse(BPoint center, BPoint radii) { } argument
/haiku/src/kits/print/
H A DTemplate.cpp68 void Template::StrokeArc(BPoint center, BPoint radii, float startTheta, float arcTheta) { argument
72 void Template::FillArc(BPoint center, BPoint radii, float startTheta, float arcTheta) { argument
76 void Template::StrokeEllipse(BPoint center, BPoint radii) { argument
80 void Template::FillEllipse(BPoint center, BPoint radii) { argument
H A DPictureIterator.cpp43 static void _StrokeArc(void *p, BPoint center, BPoint radii, float startTheta, float arcTheta) { return ((PictureIterator *) p)->StrokeArc(center, radii, startTheta, arcTheta); } argument
44 static void _FillArc(void *p, BPoint center, BPoint radii, float startTheta, float arcTheta) { return ((PictureIterator *) p)->FillArc(center, radii, startTheta, arcTheta); } argument
45 static void _StrokeEllipse(void *p, BPoint center, BPoint radii) { return ((PictureIterator *) p)->StrokeEllipse(center, radii); } argument
46 static void _FillEllipse(void *p, BPoint center, BPoint radii) { return ((PictureIterator *) p)->FillEllipse(center, radii); } argument
103 (void *)_StrokeArc, // 9 StrokeArc(void *user, BPoint center, BPoint radii, float startTheta, float arcTheta)
104 (void *)_FillArc, // 10 FillArc(void *user, BPoint center, BPoin
[all...]
/haiku/src/kits/app/
H A DServerLink.cpp170 BPoint center = radial->Center(); local
172 fSender->Attach(&center, sizeof(BPoint));
181 BPoint center = radialFocus->Center(); local
184 fSender->Attach(&center, sizeof(BPoint));
193 BPoint center = diamond->Center(); local
194 fSender->Attach(&center, sizeof(BPoint));
201 BPoint center = conic->Center(); local
203 fSender->Attach(&center, sizeof(BPoint));
H A DLinkReceiver.cpp530 BPoint center; local
532 Read(&center, sizeof(BPoint));
535 radial->SetCenter(center);
544 BPoint center; local
547 Read(&center, sizeof(BPoint));
551 radialFocus->SetCenter(center);
560 BPoint center; local
561 if ((status = Read(&center, sizeof(BPoint))) != B_OK)
563 diamond->SetCenter(center);
570 BPoint center; local
[all...]
/haiku/src/apps/icon-o-matic/generic/property/view/specific_properties/
H A DOptionValueView.cpp67 float center = floorf(b.top + b.Height() / 2.0); local
70 arrow[0] = BPoint(b.left, center - 3.0);
71 arrow[1] = BPoint(b.left, center + 3.0);
72 arrow[2] = BPoint(b.left + 3.0, center);
87 DrawString(fCurrentOption.String(), BPoint(b.left, floorf(center + fh.ascent / 2.0)));
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteMessage.cpp483 BPoint center; local
486 Read(center);
489 gradient = new(std::nothrow) BGradientRadial(center, radius);
495 BPoint center, focal; local
498 Read(center);
502 gradient = new(std::nothrow) BGradientRadialFocus(center, radius,
509 BPoint center; local
511 Read(center);
513 gradient = new(std::nothrow) BGradientDiamond(center);
519 BPoint center; local
[all...]

Completed in 201 milliseconds

123