Searched refs:scale (Results 51 - 75 of 135) sorted by relevance

123456

/haiku/src/apps/icon-o-matic/generic/property/specific_properties/
H A DIconProperty.h43 float scale);
H A DIconProperty.cpp123 IconProperty::InterpolateTo(const Property* other, float scale) argument
/haiku/headers/private/app/
H A DServerProtocolStructs.h28 float scale; member in struct:ViewSetStateInfo
/haiku/src/kits/interface/
H A DControlLook.cpp56 float scale = be_plain_font->Size() / 12.0f; local
57 if (scale < 1.0f)
58 scale = 1.0f;
60 const int32 scaled = (int32)(size * scale);
H A DRegion.cpp280 BRegion::ScaleBy(BSize scale) argument
282 ScaleBy(scale.Width(), scale.Height());
/haiku/src/apps/icon-o-matic/import_export/svg/
H A DDocumentBuilder.cpp90 double scale = 64.0 / size; local
91 printf("scale: %f\n", scale);
95 transform.ScaleBy(B_ORIGIN, scale, scale);
300 // Finally, scale the gradient according to the global scaling to fit
339 stroke->width(stroke->width() * shape->scale());
/haiku/src/libs/icon/shape/
H A DVectorPath.h138 // directly on the curve and returns a "scale"
142 double* scale) const;
145 // "scale" is on [0..1] indicating the distance
147 bool GetPoint(int32 index, double scale,
/haiku/src/libs/udis86/
H A Dsyn-intel.c80 if (op->scale) {
81 ud_asmprintf(u, "*%d", op->scale);
H A Dsyn-att.c84 if (op->scale) {
85 ud_asmprintf(u, ",%d", op->scale);
/haiku/src/servers/app/
H A DCanvas.cpp122 Canvas::SetScale(float scale) argument
124 fDrawState->SetScale(scale);
H A DCanvas.h53 void SetScale(float scale);
/haiku/src/apps/webpositive/tabview/
H A DTabManager.cpp508 // Try to scale down the icon by an even factor so the
511 float scale = 2; local
512 while ((fIcon->Bounds().Width() + 1) / scale > kIconSize)
513 scale *= 2;
514 if ((fIcon->Bounds().Width() + 1) / scale >= kIconSize - 4
515 && (fIcon->Bounds().Height() + 1) / scale >= kIconSize - 4
516 && (fIcon->Bounds().Height() + 1) / scale <= kIconSize) {
517 iconBounds.right = (fIcon->Bounds().Width() + 1) / scale - 1;
518 iconBounds.bottom = (fIcon->Bounds().Height() + 1) / scale - 1;
/haiku/src/add-ons/screen_savers/flurry/
H A DSpark.cpp66 float scale; local
79 scale = w/50.0f;
80 glScalef(scale,scale,0.0f);
/haiku/src/libs/icon/
H A DIconRenderer.h66 void SetScale(double scale);
/haiku/src/apps/debuganalyzer/gui/chart/
H A DLineChartRenderer.cpp190 double scale = (double)fFrame.IntegerHeight() / sampleRange; local
199 bottom - ((info->samples[first] - minRange) * scale)));
203 float(bottom - ((info->samples[i] - minRange) * scale))));
/haiku/src/system/libroot/posix/musl/math/
H A Dfmal.c97 * Compute ldexp(a+b, scale) with a single rounding error. It is assumed
101 static inline long double add_and_denormalize(long double a, long double b, int scale) argument
121 bits_lost = -u.i.se - scale + 1;
125 return scalbnl(sum.hi, scale);
/haiku/src/kits/tracker/
H A DPose.cpp745 float scale = 1.0; local
747 scale = (float)poseView->IconSizeInt() / 32.0;
749 fLocation.x = point.x / scale;
750 fLocation.y = point.y / scale;
894 float scale = 1.0; local
896 scale = (float)poseView->IconSizeInt() / 32.0;
898 return BPoint(fLocation.x * scale, fLocation.y * scale);
905 float scale = 1.0; local
907 scale
[all...]
/haiku/src/libs/icon/transformer/
H A DStrokeTransformer.cpp125 double scale = fSource->ApproximationScale(); local
128 scale *= factor;
129 return scale;
/haiku/src/apps/icon-o-matic/shape/
H A DPathManipulator.cpp1242 scale_point(BPoint a, BPoint b, float scale) argument
1244 return BPoint(a.x + (b.x - a.x) * scale,
1245 a.y + (b.y - a.y) * scale);
1252 double scale; local
1263 if (fPath->FindBezierScale(index - 1, where, &scale)
1264 && scale >= 0.0 && scale <= 1.0
1265 && fPath->GetPoint(index - 1, scale, point)) {
1272 where = scale_point(previousOut, nextIn, scale);
1274 previousOut = scale_point(previous, previousOut, scale);
[all...]
/haiku/src/apps/mediaplayer/interface/
H A DTransportControlGroup.h79 void SetSymbolScale(float scale);
/haiku/headers/os/interface/
H A DRegion.h62 void ScaleBy(BSize scale);
/haiku/src/servers/app/font/
H A DFontCacheEntry.h123 double scale = 1.0);
/haiku/headers/private/print/
H A DTemplate.h73 virtual void SetScale(float scale);
H A DPictureIterator.h79 virtual void SetScale(float scale) { } argument
/haiku/src/kits/print/
H A DTemplate.cpp172 void Template::SetScale(float scale) { argument

Completed in 232 milliseconds

123456