Searched refs:degrees (Results 1 - 10 of 10) sorted by relevance

/haiku/src/apps/icon-o-matic/transformable/
H A DChannelTransform.cpp129 ChannelTransform::RotateBy(BPoint origin, double degrees) argument
131 if (degrees == 0.0)
136 fRotation += degrees;
142 agg::trans_affine_rotation m(degrees * M_PI / 180.0);
154 ChannelTransform::RotateBy(double degrees) argument
156 if (degrees == 0.0)
159 fRotation += degrees;
H A DChannelTransform.h34 virtual void RotateBy(BPoint origin, double degrees);
35 void RotateBy(double degrees);
/haiku/headers/private/shared/
H A DExpressionParser.h45 void SetDegreeMode(bool degrees);
/haiku/src/libs/icon/transformable/
H A DTransformable.h73 virtual void RotateBy(BPoint origin, double degrees);
H A DTransformable.cpp262 Transformable::RotateBy(BPoint origin, double degrees) argument
264 if (degrees != 0.0) {
266 multiply(agg::trans_affine_rotation(degrees * (M_PI / 180.0)));
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Drandom_r.c141 int degrees[MAX_TYPES]; member in struct:random_poly_info
263 degree = random_poly_info.degrees[type];
325 buf->rand_deg = degree = random_poly_info.degrees[type];
/haiku/src/system/libroot/posix/stdlib/
H A Drandom.c134 static const int degrees[MAX_TYPES] = { DEG_0, DEG_1, DEG_2, DEG_3, DEG_4 }; variable
385 if (type != TYPE_0 && rear >= (uint32_t)degrees[type])
392 rand_deg = degrees[type];
/haiku/src/apps/deskcalc/
H A DCalcView.h88 // Set the angle mode to degrees or radians
89 void SetDegreeMode(bool degrees);
H A DCalcView.cpp990 CalcView::SetDegreeMode(bool degrees) argument
992 fOptions->degree_mode = degrees;
993 fAngleModeRadianItem->SetMarked(!degrees);
994 fAngleModeDegreeItem->SetMarked(degrees);
/haiku/src/kits/shared/
H A DExpressionParser.cpp368 ExpressionParser::SetDegreeMode(bool degrees) argument
370 fDegreeMode = degrees;

Completed in 157 milliseconds