Symbol: fTranslation
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
118
fTranslation += offset;
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
139
double xOffset = fTranslation.x - origin.x;
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
140
double yOffset = fTranslation.y - origin.y;
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
145
fTranslation.x = origin.x + xOffset;
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
146
fTranslation.y = origin.y + yOffset;
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
180
double xOffset = fTranslation.x - origin.x;
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
181
double yOffset = fTranslation.y - origin.y;
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
183
fTranslation.x = origin.x + (xOffset * xScale);
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
184
fTranslation.y = origin.y + (yOffset * yScale);
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
20
fTranslation(0.0, 0.0),
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
208
if (fTranslation == offset && fXScale == xScale && fYScale == yScale)
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
211
fTranslation = offset;
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
232
fTranslation = other.fTranslation;
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
263
multiply(agg::trans_affine_translation(fPivot.x + fTranslation.x,
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
264
fPivot.y + fTranslation.y));
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
32
fTranslation(other.fTranslation),
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
81
if (fTranslation != translation ||
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
88
fTranslation = translation;
src/apps/icon-o-matic/transformable/ChannelTransform.h
50
{ return fTranslation; }
src/apps/icon-o-matic/transformable/ChannelTransform.h
64
BPoint fTranslation;
src/tests/add-ons/print/ppd/model/Value.cpp
23
delete fTranslation;
src/tests/add-ons/print/ppd/model/Value.cpp
48
fTranslation = translation;
src/tests/add-ons/print/ppd/model/Value.cpp
53
return fTranslation;
src/tests/add-ons/print/ppd/model/Value.cpp
66
if (fTranslation != NULL) {
src/tests/add-ons/print/ppd/model/Value.cpp
67
return fTranslation->String();
src/tests/add-ons/print/ppd/model/Value.cpp
96
if (fTranslation != NULL) {
src/tests/add-ons/print/ppd/model/Value.cpp
97
printf("\t\t\t<translation>%s</translation>\n", fTranslation->String());
src/tests/add-ons/print/ppd/model/Value.h
27
BString* fTranslation;