Searched refs:transform (Results 51 - 75 of 82) sorted by relevance

1234

/haiku/src/servers/app/
H A DView.h227 SimpleTransform& transform) const;
229 SimpleTransform& transform) const;
/haiku/src/apps/icon-o-matic/transformable/
H A DTransformBox.cpp362 // transform the points for display
670 r.transform(&xOffset, &yOffset);
677 m.transform(&x, &y);
678 m.transform(&x1, &y1);
679 m.transform(&x2, &y2);
680 m.transform(&x3, &y3);
H A DChannelTransform.cpp143 m.transform(&xOffset, &yOffset);
H A DTransformBoxStates.cpp159 fMatrix.transform(&x, &y);
363 fMatrix.transform(&x, &y);
/haiku/headers/libs/agg/
H A Dagg_trans_perspective.h194 void transform(double* x, double* y) const;
571 inline void trans_perspective::transform(double* px, double* py) const function in class:agg::trans_perspective
600 if(t.invert()) t.transform(x, y);
694 transform(&x1, &y1);
695 transform(&x2, &y2);
715 t.transform(&x1, &y1);
716 t.transform(&x2, &y2);
H A Dagg_trans_affine.h67 // and then transform many points, let alone the convenience to set any
77 // m.transform(&x, &y);
129 // transform a parallelogram to another one. Src and dst are
247 void transform(double* x, double* y) const;
293 inline void trans_affine::transform(double* x, double* y) const function in class:agg::trans_affine
H A Dagg_trans_viewport.h133 void transform(double* x, double* y) const function in class:agg::trans_viewport
/haiku/src/libs/agg/src/
H A Dagg_trans_single_path.cpp116 void trans_single_path::transform(double *x, double *y) const function in class:agg::trans_single_path
H A Dagg_bezier_arc.cpp235 // We can now build and transform the resulting arc
243 mtx.transform(m_arc.vertices() + i, m_arc.vertices() + i + 1);
H A Dagg_trans_double_path.cpp247 void trans_double_path::transform(double *x, double *y) const function in class:agg::trans_double_path
/haiku/src/libs/icon/shape/
H A DVectorPath.h163 void ApplyTransform(const Transformable& transform);
H A DVectorPath.cpp961 VectorPath::ApplyTransform(const Transformable& transform) argument
963 if (transform.IsIdentity())
967 transform.Transform(&(fPath[i].point));
968 transform.Transform(&(fPath[i].point_out));
969 transform.Transform(&(fPath[i].point_in));
/haiku/src/add-ons/kernel/busses/scsi/usb/
H A Dproto_common.c95 /* transform command as required by protocol */
102 if(B_OK != (*udi->transform_m->transform)(udi, (uint8 *)&cmd, sizeof(cmd), &rcmd, &rcmdlen)){
103 TRACE_ALWAYS("transfer_callback: REQUEST SENSE command transform failed\n");
/haiku/src/kits/interface/
H A DView.cpp255 if (transform.Flatten(_transform, sizeof(_transform)) != B_OK)
325 if (transform.Unflatten(B_AFFINE_TRANSFORM_TYPE, _transform,
534 BAffineTransform transform; local
535 if (archive->FindFlat("_transform", &transform) == B_OK)
536 SetTransform(transform);
677 BAffineTransform transform = Transform(); local
678 ret = data->AddFlat("_transform", &transform);
1847 // initialize origin, scale and transform, new states start "clean".
1852 fState->transform.Reset();
1961 BView::SetTransform(BAffineTransform transform) argument
2020 BAffineTransform transform = fState->parent_composite_transform * Transform(); local
[all...]
H A DPicturePlayer.cpp447 set_transform(void* _context, const BAffineTransform& transform) argument
451 context->function_table[48])(context->user_data, transform);
1589 const BAffineTransform* transform; local
1590 if (callbacks.set_transform == NULL || !reader.Get(transform))
1593 callbacks.set_transform(userData, *transform);
H A DPictureDataWriter.cpp190 PictureDataWriter::WriteSetTransform(BAffineTransform transform) argument
194 Write<BAffineTransform>(transform);
/haiku/headers/private/interface/
H A DPicturePlayer.h88 void (*set_transform)(void* userData, const BAffineTransform& transform);
H A DPictureDataWriter.h46 status_t WriteSetTransform(BAffineTransform transform);
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteDrawingEngine.h60 virtual void SetTransform(const BAffineTransform& transform,
H A DRemoteDrawingEngine.cpp271 RemoteDrawingEngine::SetTransform(const BAffineTransform& transform, argument
276 if (fState.Transform() == transform)
279 fState.SetTransform(transform);
284 message.AddTransform(transform);
/haiku/src/servers/app/drawing/
H A DDrawingEngine.h90 virtual void SetTransform(const BAffineTransform& transform,
/haiku/src/servers/app/drawing/Painter/
H A DPainter.cpp372 Painter::SetTransform(BAffineTransform transform, int32 xOffset, int32 yOffset) argument
374 fIdentityTransform = transform.IsIdentity();
377 fTransform *= agg::trans_affine(transform.sx, transform.shy,
378 transform.shx, transform.sy, transform.tx, transform.ty);
/haiku/src/libs/icon/style/
H A DGradientTransformable.cpp531 agg::trans_affine transform(-200.0, -200.0, 200.0, 200.0, parl);
532 multiply(transform);
597 printf("Gradient: type: %s, interpolation: %s, inherits transform: %d\n",
/haiku/src/apps/remotedesktop/
H A DRemoteView.cpp704 BAffineTransform transform; local
705 if (message.ReadTransform(transform) != B_OK)
708 offscreen->SetTransform(transform);
/haiku/src/add-ons/screen_savers/ifs/
H A DIFS.cpp134 transform(SIMILITUDE* Similitude, int32 xo, int32 yo, int32* x, int32* y) function
417 transform(Similitude, xo, yo, &x, &y);
643 transform(Current, xo, yo, &x, &y);

Completed in 254 milliseconds

1234