Searched refs:pivot (Results 1 - 20 of 20) sorted by relevance

/haiku/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),
70 TransformGradientCommand::_SetTransformation(BPoint pivot, BPoint translation, argument
74 fTransformBox->SetTransformation(pivot, translation, rotation, xScale,
80 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) argument
H A DTransformCommand.h19 TransformCommand(BPoint pivot,
41 void SetNewTransformation(BPoint pivot,
53 virtual status_t _SetTransformation(BPoint pivot,
H A DTransformObjectsCommand.cpp25 BPoint pivot,
32 : TransformCommand(pivot,
94 BPoint pivot, BPoint translation,
99 fTransformBox->SetTransformation(pivot, translation,
105 transform.SetTransformation(pivot, translation,
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) argument
93 _SetTransformation( BPoint pivot, BPoint translation, double rotation, double xScale, double yScale) const argument
H A DTransformCommand.cpp14 TransformCommand::TransformCommand(BPoint pivot, argument
21 fOldPivot(pivot),
27 fNewPivot(pivot),
116 TransformCommand::SetNewTransformation(BPoint pivot, argument
122 fNewPivot = pivot;
H A DChannelTransform.cpp74 ChannelTransform::SetTransformation(BPoint pivot, BPoint translation, argument
78 //"%.2f, %.2f, %.2f)\n", pivot.x, pivot.y, translation.x, translation.y,
82 fPivot != pivot ||
87 fPivot = pivot;
100 ChannelTransform::SetPivot(BPoint pivot) argument
102 if (pivot == fPivot)
105 fPivot = pivot;
257 // the "pivot" is like the offset from world to local
H A DTransformGradientCommand.h26 BPoint pivot, BPoint translation,
H A DChannelTransform.h25 void SetTransformation(BPoint pivot,
31 void SetPivot(BPoint pivot);
H A DTransformObjectsCommand.h33 BPoint pivot,
/haiku/src/libs/agg/src/
H A Dagg_image_filters.cpp91 unsigned pivot = m_diameter << (image_subpixel_shift - 1); local
93 for(i = 0; i < pivot; i++)
95 m_weight_array[pivot + i] = m_weight_array[pivot - i];
/haiku/src/apps/icon-o-matic/shape/commands/
H A DTransformPointsCommand.cpp28 BPoint pivot,
35 : TransformCommand(pivot,
96 BPoint pivot, BPoint translation,
101 fTransformBox->SetTransformation(pivot, translation,
108 transform.SetTransformation(pivot, translation,
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) argument
95 _SetTransformation( BPoint pivot, BPoint translation, double rotation, double xScale, double yScale) const argument
H A DNudgePointsCommand.h39 virtual status_t _SetTransformation(BPoint pivot,
H A DTransformPointsCommand.h37 BPoint pivot,
H A DNudgePointsCommand.cpp84 NudgePointsCommand::_SetTransformation(BPoint pivot, argument
/haiku/src/libs/gnu/
H A Dqsort.c96 char* pivot; local
100 // Use median of second, middle and second-last items as pivot.
101 // First and last may have been swapped with pivot and therefore be
116 // Swap mid value (pivList[1]), and last element to put pivot as last
123 // ^- base ^- ple ^- pl ^- pr ^- pre ^- last (where the pivot is)
127 pivot = last;
133 // - an item on the left that is greater than the pivot
134 // - an item on the right that is less than the pivot
136 // Meanwhile items that are equal to the pivot are moved to the edges
139 // Move left hand items which are equal to the pivot t
[all...]
/haiku/headers/libs/agg/
H A Dagg_simul_eq.h45 static int pivot(double m[Rows][Cols], unsigned row) function in struct:agg::matrix_pivot
104 if(matrix_pivot<Size, Size + RightCols>::pivot(tmp, k) < 0)
H A Dagg_image_filters.h56 unsigned pivot = diameter() << (image_subpixel_shift - 1); local
57 for(i = 0; i < pivot; i++)
61 m_weight_array[pivot + i] =
62 m_weight_array[pivot - i] = (int16)iround(y * image_filter_scale);
H A Dagg_rasterizer_cells_aa.h530 Cell** pivot; local
534 // we use base + len/2 as the pivot
535 pivot = base + len / 2;
536 swap_cells(base, pivot);
H A Dagg_array.h938 int pivot; local
942 // we use base + len/2 as the pivot
943 pivot = base + len / 2;
944 swap_elements(arr[base], arr[pivot]);
/haiku/src/kits/interface/layouter/
H A DLayoutOptimizer.cpp273 // find pivot
274 int pivot = i; local
280 pivot = j;
290 if (pivot != i) {
291 swap(indices[i], indices[pivot]);
292 swap(b[i], b[pivot]);
294 pivot = indices[i];
299 double q = -a[index][i] / a[pivot][i];
302 a[index][k] += a[pivot][k] * q;
335 // find next pivot
336 int pivot = i; local
[all...]
/haiku/src/libs/linprog/
H A DLayoutOptimizer.cpp248 // find pivot
249 int pivot = i; local
255 pivot = j;
265 if (pivot != i) {
266 swap(indices[i], indices[pivot]);
267 swap(b[i], b[pivot]);
269 pivot = indices[i];
274 double q = -a[index][i] / a[pivot][i];
277 a[index][k] += a[pivot][k] * q;
313 // find next pivot
314 int pivot = i; local
[all...]

Completed in 214 milliseconds