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

123

/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex188 \begin{center}
207 \end{center}
/haiku/docs/interface_guidelines/docbook-css/
H A Dstyles.css71 text-align:center;
77 text-align:center;
632 text-align: center;
/haiku/headers/libs/agg/
H A Dagg_trans_lens.h31 void center(double x, double y) { m_xc = x; m_yc = y; } function in class:agg::trans_warp_magnifier
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/headers/os/interface/
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...]
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);
/haiku/src/add-ons/screen_savers/leaves/
H A DLeaves.cpp235 BPoint center = transform.Apply(BPoint(kLeafWidth / 2, kLeafHeight / 2)); local
237 BGradientLinear gradient(center - gradientOffset, center + gradientOffset);
/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/apps/launchbox/
H A DMainWindow.cpp542 BPoint center(origin.x + frame.Width() / 2.0,
546 fScreenPosition.x = center.x / screenFrame.Width();
547 fScreenPosition.y = center.y / screenFrame.Height();
569 BPoint center(fScreenPosition.x * screenFrame.Width(),
573 frame.OffsetBy(center - frameCenter);
/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.cpp65 ProgressWindow::Start(BWindow* referenceWindow, bool center) argument
70 if (!center) {
H A DProgressWindow.h30 bool center = false);
/haiku/src/kits/app/
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...]
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));
/haiku/src/kits/interface/
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...]
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;
/haiku/src/libs/glut/
H A Dglutstroke.h32 float center; member in struct:__anon1828
/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...]

Completed in 147 milliseconds

123