Searched refs:rotation (Results 1 - 25 of 54) sorted by relevance

123

/haiku-fatelf/src/apps/icon-o-matic/transformable/
H A DTransformGradientCommand.cpp19 Gradient* gradient, BPoint pivot, BPoint translation, double rotation,
22 TransformCommand(pivot, translation, rotation, xScale, yScale, name,
72 double rotation, double xScale, double yScale) const
75 fTransformBox->SetTransformation(pivot, translation, rotation, xScale,
81 transform.SetTransformation(pivot, translation, rotation, xScale, yScale);
18 TransformGradientCommand(TransformBox* box, Gradient* gradient, BPoint pivot, BPoint translation, double rotation, double xScale, double yScale, const char* name, int32 nameIndex) argument
71 _SetTransformation(BPoint pivot, BPoint translation, double rotation, double xScale, double yScale) const argument
H A DTransformCommand.cpp16 double rotation,
24 fOldRotation(rotation),
30 fNewRotation(rotation),
122 double rotation,
128 fNewRotation = rotation;
14 TransformCommand(BPoint pivot, BPoint translation, double rotation, double xScale, double yScale, const char* actionName, uint32 nameIndex) argument
120 SetNewTransformation(BPoint pivot, BPoint translation, double rotation, double xScale, double yScale) argument
H A DTransformObjectsCommand.cpp27 double rotation,
35 rotation,
97 double rotation,
102 rotation, xScale, yScale);
108 rotation, xScale, yScale);
19 TransformObjectsCommand( TransformBox* box, Transformable** const objects, const double* originals, int32 count, BPoint pivot, BPoint translation, double rotation, double xScale, double yScale, const char* name, int32 nameIndex) argument
95 _SetTransformation( BPoint pivot, BPoint translation, double rotation, double xScale, double yScale) const argument
H A DTransformCommand.h21 double rotation,
45 double rotation,
58 double rotation,
H A DChannelTransform.cpp57 // rotation
58 double rotation = agg::rad2deg(other.rotation()); local
68 SetTransformation(B_ORIGIN, BPoint(tx, ty), rotation, scaleX, scaleY);
75 double rotation, double xScale, double yScale)
79 //rotation, xScale, yScale);
83 fRotation != rotation ||
89 fRotation = rotation;
125 /*! Converts a rotation in world coordinates into
126 a combined local rotation an
74 SetTransformation(BPoint pivot, BPoint translation, double rotation, double xScale, double yScale) argument
[all...]
H A DCanvasTransformBox.cpp63 return t.rotation() * 180.0 / M_PI;
H A DTransformGradientCommand.h27 double rotation, double xScale,
H A DTransformBoxStates.cpp194 float rotation = fmod(360.0 - fParent->ViewSpaceRotation() + 22.5, 180.0); local
197 if (rotation < 45.0) {
220 } else if (rotation < 90.0) {
243 } else if (rotation < 135.0) {
412 float rotation = fmod(360.0 - fParent->ViewSpaceRotation() + 22.5, 180.0); local
413 if (rotation < 45.0) {
424 } else if (rotation < 90.0) {
435 } else if (rotation < 135.0) {
580 float rotation = calc_angle(origin, from, current) + 180.0; local
582 if (rotation < 45.
[all...]
H A DTransformObjectsCommand.h35 double rotation,
H A DChannelTransform.h27 double rotation,
H A DTransformGradientBox.cpp174 return t.rotation() * 180.0 / M_PI;
/haiku-fatelf/src/add-ons/screen_savers/flurry/
H A DStar.cpp60 double rotation; local
77 rotation = thisAngle*0.501 + 5.01 * (double) s->mystery / (double) BIGMYSTERY;
78 cr = cos(rotation);
79 sr = sin(rotation);
92 rotation = thisAngle*2.501 + 85.01 * (double) s->mystery / (double) BIGMYSTERY;
93 cr = cos(rotation);
94 sr = sin(rotation);
H A DSpark.cpp192 double rotation; local
269 rotation = thisAngle*0.501 + 5.01 * (double) s->mystery / (double) BIGMYSTERY;
270 cr = cos(rotation);
271 sr = sin(rotation);
284 rotation = thisAngle*2.501 + 85.01 * (double) s->mystery / (double) BIGMYSTERY;
285 cr = cos(rotation);
286 sr = sin(rotation);
/haiku-fatelf/src/apps/icon-o-matic/shape/commands/
H A DTransformPointsCommand.cpp30 double rotation,
38 rotation,
99 double rotation,
104 rotation, xScale, yScale);
111 rotation, xScale, yScale);
20 TransformPointsCommand( TransformBox* box, VectorPath* path, const int32* indices, const control_point* points, int32 count, BPoint pivot, BPoint translation, double rotation, double xScale, double yScale, const char* name, int32 nameIndex) argument
97 _SetTransformation( BPoint pivot, BPoint translation, double rotation, double xScale, double yScale) const argument
H A DNudgePointsCommand.h41 double rotation,
H A DTransformPointsCommand.h39 double rotation,
H A DNudgePointsCommand.cpp76 double rotation,
74 _SetTransformation(BPoint pivot, BPoint translation, double rotation, double xScale, double yScale) const argument
/haiku-fatelf/src/tests/kits/opengl/direct_mode/
H A DGLDirectMode.cpp27 void gDraw(float rotation = 0);
165 void SampleGLView::gDraw(float rotation) argument
173 glRotatef(rotation, 0, 0, 1);
174 glRotatef(rotation, 1, 0.6, 0);
/haiku-fatelf/src/apps/fontdemo/
H A DFontDemoView.h38 void SetFontRotation(float rotation);
H A DFontDemoView.cpp257 float rotation = 0.0; local
258 if (msg->FindFloat("_rotation", &rotation) == B_OK) {
259 SetFontRotation(rotation);
388 FontDemoView::SetFontRotation(float rotation) argument
390 fFont.SetRotation(rotation);
/haiku-fatelf/src/libs/agg/src/
H A Dagg_trans_affine.cpp159 double trans_affine::rotation() const function in class:agg::trans_affine
185 t *= trans_affine_rotation(-rotation());
/haiku-fatelf/src/libs/icon/transformer/
H A DAffineTransformer.cpp135 // rotation
137 agg::rad2deg(rotation())));
160 double r = rotation();
/haiku-fatelf/src/add-ons/print/drivers/pdf/source/
H A DPDFText.cpp449 const float rotation = fState->beFont.Rotation(); local
450 const bool rotate = rotation != 0.0;
455 PDF_rotate(fPdf, rotation);
543 const double rotation = DEGREE2RAD(fState->beFont.Rotation()); local
544 const bool rotate = rotation != 0.0;
545 const double cos1 = rotate ? cos(rotation) : 1;
546 const double sin1 = rotate ? -sin(rotation) : 0;
/haiku-fatelf/src/kits/interface/
H A DAffineTransform.cpp391 double rotation; local
394 if (!GetAffineParameters(&tx, &ty, &rotation, NULL, NULL,
402 result.RotateBy(rotation);
646 double rotation = Rotation(); local
648 *_rotation = rotation;
658 // Reverse the effects of any rotation
660 t.PreMultiply(AffineRotation(-rotation));
/haiku-fatelf/headers/private/interface/
H A DPictureDataWriter.h49 status_t WriteSetFontRotation(const float &rotation);

Completed in 92 milliseconds

123