Home
last modified time | relevance | path

Searched refs:aCenter (Results 1 – 25 of 567) sorted by relevance

12345678910>>...23

/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/source/window/
H A Ddecoview.cxx72 const Point aCenter = nRect.Center(); in ImplDrawSymbol() local
249 pDev->DrawLine( Point( aCenter.X(), aCenter.Y()-y ), in ImplDrawSymbol()
250 Point( aCenter.X(), aCenter.Y()+y ) ); in ImplDrawSymbol()
256 pDev->DrawLine( Point( aCenter.X()+y, aCenter.Y()-x ), in ImplDrawSymbol()
257 Point( aCenter.X()+y, aCenter.Y()+x ) ); in ImplDrawSymbol()
258 pDev->DrawLine( Point( aCenter.X()-y, aCenter.Y()-x ), in ImplDrawSymbol()
259 Point( aCenter.X()-y, aCenter.Y()+x ) ); in ImplDrawSymbol()
266 pDev->DrawLine( Point( aCenter.X()-x, aCenter.Y()-y ), in ImplDrawSymbol()
267 Point( aCenter.X()-x, aCenter.Y()+y ) ); in ImplDrawSymbol()
268 pDev->DrawLine( Point( aCenter.X()+x, aCenter.Y()-y ), in ImplDrawSymbol()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/source/window/
H A Ddecoview.cxx72 const Point aCenter = nRect.Center(); in ImplDrawSymbol() local
249 pDev->DrawLine( Point( aCenter.X(), aCenter.Y()-y ), in ImplDrawSymbol()
250 Point( aCenter.X(), aCenter.Y()+y ) ); in ImplDrawSymbol()
256 pDev->DrawLine( Point( aCenter.X()+y, aCenter.Y()-x ), in ImplDrawSymbol()
257 Point( aCenter.X()+y, aCenter.Y()+x ) ); in ImplDrawSymbol()
258 pDev->DrawLine( Point( aCenter.X()-y, aCenter.Y()-x ), in ImplDrawSymbol()
259 Point( aCenter.X()-y, aCenter.Y()+x ) ); in ImplDrawSymbol()
266 pDev->DrawLine( Point( aCenter.X()-x, aCenter.Y()-y ), in ImplDrawSymbol()
267 Point( aCenter.X()-x, aCenter.Y()+y ) ); in ImplDrawSymbol()
268 pDev->DrawLine( Point( aCenter.X()+x, aCenter.Y()-y ), in ImplDrawSymbol()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/ui/cctrl/
H A Dcbuttonw.cxx101 Point aCenter = aPixRect.Center(); in ImpDrawArrow() local
119 aTempRect.SetLeft( aCenter.X() - aSize4.Width() ); in ImpDrawArrow()
120 aTempRect.SetRight( aCenter.X() + aSize4.Width() ); in ImpDrawArrow()
121 aTempRect.SetTop( aCenter.Y() - aSize3.Height() ); in ImpDrawArrow()
122 aTempRect.SetBottom( aCenter.Y() - 1 ); in ImpDrawArrow()
126 Point aPos1( aCenter.X()-aSize3.Width(), aCenter.Y() ); in ImpDrawArrow()
127 Point aPos2( aCenter.X()+aSize3.Width(), aCenter.Y() ); in ImpDrawArrow()
135 pOut->DrawLine( Point( aCenter.X() - aSize3.Width(), aPos1.Y()+1 ), in ImpDrawArrow()
136 Point( aCenter.X() + aSize3.Width(), aPos1.Y()+1 ) ); in ImpDrawArrow()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/ui/cctrl/
H A Dcbuttonw.cxx102 Point aCenter = aPixRect.Center(); in ImpDrawArrow() local
120 aTempRect.SetLeft( aCenter.X() - aSize4.Width() ); in ImpDrawArrow()
121 aTempRect.SetRight( aCenter.X() + aSize4.Width() ); in ImpDrawArrow()
122 aTempRect.SetTop( aCenter.Y() - aSize3.Height() ); in ImpDrawArrow()
123 aTempRect.SetBottom( aCenter.Y() - 1 ); in ImpDrawArrow()
127 Point aPos1( aCenter.X()-aSize3.Width(), aCenter.Y() ); in ImpDrawArrow()
128 Point aPos2( aCenter.X()+aSize3.Width(), aCenter.Y() ); in ImpDrawArrow()
136 pOut->DrawLine( Point( aCenter.X() - aSize3.Width(), aPos1.Y()+1 ), in ImpDrawArrow()
137 Point( aCenter.X() + aSize3.Width(), aPos1.Y()+1 ) ); in ImpDrawArrow()
/dports/cad/opencascade/opencascade-7.6.0/src/DsgPrs/
H A DDsgPrs_EllipseRadiusPresentation.cxx55 const gp_Pnt & aCenter, in Add() argument
62 const Standard_Real dist = aCenter.Distance( aPosition ); in Add()
67 aPrims->AddVertex(aCenter); in Add()
77 gp_Dir arrdir( gp_Vec( aCenter, anEndOfArrow)); in Add()
95 const gp_Pnt & aCenter, in Add() argument
108 gp_Vec Vapex(aCenter, ElCLib::Value( uLast, anEllipse )) ; in Add()
109 gp_Vec Vpnt(aCenter, ElCLib::Value( uFirst, anEllipse )) ; in Add()
121 aPosition, anEndOfArrow, aCenter, IsMaxRadius, ArrowPrs); in Add()
137 const gp_Pnt & aCenter, in Add() argument
157 gp_Vec Vapex(aCenter, anEndOfArrow) ; in Add()
[all …]
H A DDsgPrs_ConcentricPresentation.cxx32 const gp_Pnt& aCenter, in Add() argument
40 gp_Circ Circ(gp_Ax2(aCenter,aNorm), aRadius); in Add()
69 gp_Dir vecnorm(aPoint.XYZ() - aCenter.XYZ()); in Add()
72 gp_Pnt p1 = aCenter.Translated(vec); in Add()
73 gp_Pnt p2 = aCenter.Translated(-vec); in Add()
84 p1 = aCenter.Translated(vec); in Add()
85 p2 = aCenter.Translated(-vec); in Add()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/
H A Dsch_sheet_pin.cpp220 void SCH_SHEET_PIN::MirrorVertically( int aCenter ) in MirrorVertically() argument
222 int p = GetTextPos().y - aCenter; in MirrorVertically()
224 SetTextY( aCenter - p ); in MirrorVertically()
235 void SCH_SHEET_PIN::MirrorHorizontally( int aCenter ) in MirrorHorizontally() argument
237 int p = GetTextPos().x - aCenter; in MirrorHorizontally()
239 SetTextX( aCenter - p ); in MirrorHorizontally()
250 void SCH_SHEET_PIN::Rotate( const wxPoint& aCenter ) in Rotate() argument
253 wxPoint delta = pt - aCenter; in Rotate()
255 RotatePoint( &pt, aCenter, 900 ); in Rotate()
267 SetTextPos( wxPoint( aCenter.x - delta.x, GetTextPos().y ) ); in Rotate()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/drawinglayer/source/primitive2d/
H A Dwallpaperprimitive2d.cxx95 const basegfx::B2DPoint aCenter(getLocalObjectRange().getCenter()); in create2DDecomposition() local
96 aTargetTopLeft.setX(aCenter.getX() - (aLogicSize.getX() * 0.5)); in create2DDecomposition()
106 const basegfx::B2DPoint aCenter(getLocalObjectRange().getCenter()); in create2DDecomposition() local
107 aTargetTopLeft.setY(aCenter.getY() - (aLogicSize.getY() * 0.5)); in create2DDecomposition()
112 const basegfx::B2DPoint aCenter(getLocalObjectRange().getCenter()); in create2DDecomposition() local
113 aTargetTopLeft = aCenter - (aLogicSize * 0.5); in create2DDecomposition()
118 const basegfx::B2DPoint aCenter(getLocalObjectRange().getCenter()); in create2DDecomposition() local
120 aTargetTopLeft.setY(aCenter.getY() - (aLogicSize.getY() * 0.5)); in create2DDecomposition()
130 const basegfx::B2DPoint aCenter(getLocalObjectRange().getCenter()); in create2DDecomposition() local
131 aTargetTopLeft.setX(aCenter.getX() - (aLogicSize.getX() * 0.5)); in create2DDecomposition()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/libs/kimath/include/geometry/
H A Dshape_circle.h44 SHAPE_CIRCLE( const VECTOR2I& aCenter, int aRadius ) : in SHAPE_CIRCLE() argument
46 m_circle( aCenter, aRadius ) in SHAPE_CIRCLE()
102 void SetCenter( const VECTOR2I& aCenter ) in SetCenter() argument
104 m_circle.Center = aCenter; in SetCenter()
127 void Rotate( double aAngle, const VECTOR2I& aCenter = { 0, 0 } ) override
129 m_circle.Center -= aCenter;
131 m_circle.Center += aCenter;
/dports/editors/libreoffice/libreoffice-7.2.6.2/drawinglayer/source/primitive2d/
H A Dwallpaperprimitive2d.cxx94 const basegfx::B2DPoint aCenter(getLocalObjectRange().getCenter()); in create2DDecomposition() local
95 aTargetTopLeft.setX(aCenter.getX() - (aLogicSize.getX() * 0.5)); in create2DDecomposition()
105 const basegfx::B2DPoint aCenter(getLocalObjectRange().getCenter()); in create2DDecomposition() local
106 aTargetTopLeft.setY(aCenter.getY() - (aLogicSize.getY() * 0.5)); in create2DDecomposition()
111 const basegfx::B2DPoint aCenter(getLocalObjectRange().getCenter()); in create2DDecomposition() local
112 aTargetTopLeft = aCenter - (aLogicSize * 0.5); in create2DDecomposition()
117 const basegfx::B2DPoint aCenter(getLocalObjectRange().getCenter()); in create2DDecomposition() local
119 aTargetTopLeft.setY(aCenter.getY() - (aLogicSize.getY() * 0.5)); in create2DDecomposition()
129 const basegfx::B2DPoint aCenter(getLocalObjectRange().getCenter()); in create2DDecomposition() local
130 aTargetTopLeft.setX(aCenter.getX() - (aLogicSize.getX() * 0.5)); in create2DDecomposition()
/dports/www/firefox-esr/firefox-91.8.0/layout/base/
H A DShapeUtils.cpp19 const nscoord aCenter, in ComputeShapeRadius() argument
23 nscoord dist1 = std::abs(aPosMin - aCenter); in ComputeShapeRadius()
24 nscoord dist2 = std::abs(aPosMax - aCenter); in ComputeShapeRadius()
51 const nsPoint& aCenter, in ComputeCircleRadius() argument
66 ComputeShapeRadius(radius, aCenter.x, aRefBox.x, aRefBox.XMost()); in ComputeCircleRadius()
68 ComputeShapeRadius(radius, aCenter.y, aRefBox.y, aRefBox.YMost()); in ComputeCircleRadius()
74 const nsPoint& aCenter, in ComputeEllipseRadii() argument
82 radii.width = ComputeShapeRadius(ellipse.semiaxis_x, aCenter.x, aRefBox.x, in ComputeEllipseRadii()
89 radii.height = ComputeShapeRadius(ellipse.semiaxis_y, aCenter.y, aRefBox.y, in ComputeEllipseRadii()
/dports/www/firefox/firefox-99.0/layout/base/
H A DShapeUtils.cpp19 const nscoord aCenter, in ComputeShapeRadius() argument
23 nscoord dist1 = std::abs(aPosMin - aCenter); in ComputeShapeRadius()
24 nscoord dist2 = std::abs(aPosMax - aCenter); in ComputeShapeRadius()
51 const nsPoint& aCenter, in ComputeCircleRadius() argument
66 ComputeShapeRadius(radius, aCenter.x, aRefBox.x, aRefBox.XMost()); in ComputeCircleRadius()
68 ComputeShapeRadius(radius, aCenter.y, aRefBox.y, aRefBox.YMost()); in ComputeCircleRadius()
74 const nsPoint& aCenter, in ComputeEllipseRadii() argument
82 radii.width = ComputeShapeRadius(ellipse.semiaxis_x, aCenter.x, aRefBox.x, in ComputeEllipseRadii()
89 radii.height = ComputeShapeRadius(ellipse.semiaxis_y, aCenter.y, aRefBox.y, in ComputeEllipseRadii()
/dports/mail/thunderbird/thunderbird-91.8.0/layout/base/
H A DShapeUtils.cpp19 const nscoord aCenter, in ComputeShapeRadius() argument
23 nscoord dist1 = std::abs(aPosMin - aCenter); in ComputeShapeRadius()
24 nscoord dist2 = std::abs(aPosMax - aCenter); in ComputeShapeRadius()
51 const nsPoint& aCenter, in ComputeCircleRadius() argument
66 ComputeShapeRadius(radius, aCenter.x, aRefBox.x, aRefBox.XMost()); in ComputeCircleRadius()
68 ComputeShapeRadius(radius, aCenter.y, aRefBox.y, aRefBox.YMost()); in ComputeCircleRadius()
74 const nsPoint& aCenter, in ComputeEllipseRadii() argument
82 radii.width = ComputeShapeRadius(ellipse.semiaxis_x, aCenter.x, aRefBox.x, in ComputeEllipseRadii()
89 radii.height = ComputeShapeRadius(ellipse.semiaxis_y, aCenter.y, aRefBox.y, in ComputeEllipseRadii()
/dports/lang/spidermonkey78/firefox-78.9.0/layout/base/
H A DShapeUtils.cpp19 const nscoord aCenter, in ComputeShapeRadius() argument
23 nscoord dist1 = std::abs(aPosMin - aCenter); in ComputeShapeRadius()
24 nscoord dist2 = std::abs(aPosMax - aCenter); in ComputeShapeRadius()
51 const nsPoint& aCenter, in ComputeCircleRadius() argument
66 ComputeShapeRadius(radius, aCenter.x, aRefBox.x, aRefBox.XMost()); in ComputeCircleRadius()
68 ComputeShapeRadius(radius, aCenter.y, aRefBox.y, aRefBox.YMost()); in ComputeCircleRadius()
74 const nsPoint& aCenter, in ComputeEllipseRadii() argument
82 radii.width = ComputeShapeRadius(ellipse.semiaxis_x, aCenter.x, aRefBox.x, in ComputeEllipseRadii()
89 radii.height = ComputeShapeRadius(ellipse.semiaxis_y, aCenter.y, aRefBox.y, in ComputeEllipseRadii()
/dports/editors/libreoffice/libreoffice-7.2.6.2/svx/source/engine3d/
H A Dsphere3d.cxx56 aCenter = rCenter; in E3dSphereObj()
76 aCenter = rSource.aCenter; in E3dSphereObj()
87 aCenter = rDefault.GetDefaultSphereCenter(); in SetDefaultAttributes()
112 if(aCenter != rNew) in SetCenter()
114 aCenter = rNew; in SetCenter()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/svx/source/engine3d/
H A Dsphere3d.cxx59 aCenter = rCenter; in E3dSphereObj()
79 aCenter = rDefault.GetDefaultSphereCenter(); in SetDefaultAttributes()
106 aCenter = rObj.aCenter; in operator =()
116 if(aCenter != rNew) in SetCenter()
118 aCenter = rNew; in SetCenter()
/dports/devel/py-cadquery-pywrap/pywrap-e8c7bc9/opencascade/
H A DGraphic3d_TransformPers.hxx353 gp_XYZ aCenter = theCamera->Center().XYZ() + aForward.XYZ() * (aFocus - theCamera->Distance()); in Apply() local
361 aCenter += aDeltaX; in Apply()
365 aCenter -= aDeltaX; in Apply()
374 aCenter += aDeltaY; in Apply()
378 aCenter -= aDeltaY; in Apply()
383 Graphic3d_TransformUtils::Translate (aWorldView, aCenter.X(), aCenter.Y(), aCenter.Z()); in Apply()
399 gp_XYZ aCenter (0.0, 0.0, -aFocus); in Apply() local
402aCenter.SetX (-aViewDim.X() * 0.5 + (Standard_Real(myParams.Params2d.OffsetX) + aJitterComp) * aSc… in Apply()
405 aCenter.SetX (-aCenter.X()); in Apply()
413 aCenter.SetY (-aCenter.Y()); in Apply()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/basegfx/test/
H A Dboxclipper.cxx77 B2DRange aCenter(100, 100, -100, -100); in setUp() local
93 aDisjunctRanges.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
96 aEqualRanges.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
97 aEqualRanges.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
99 aIntersectionN.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
102 aIntersectionE.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
105 aIntersectionS.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
108 aIntersectionW.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
111 aIntersectionNE.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
114 aIntersectionSE.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/basegfx/test/
H A Dboxclipper.cxx76 B2DRange aCenter(100, 100, -100, -100); in setUp() local
92 aDisjunctRanges.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
95 aEqualRanges.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
96 aEqualRanges.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
98 aIntersectionN.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
101 aIntersectionE.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
104 aIntersectionS.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
107 aIntersectionW.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
110 aIntersectionNE.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
113 aIntersectionSE.appendElement( aCenter, B2VectorOrientation::Negative ); in setUp()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/layout/base/
H A DShapeUtils.cpp20 const nscoord aCenter, in ComputeShapeRadius() argument
23 nscoord dist1 = std::abs(aPosMin - aCenter); in ComputeShapeRadius()
24 nscoord dist2 = std::abs(aPosMax - aCenter); in ComputeShapeRadius()
51 const UniquePtr<StyleBasicShape>& aBasicShape, const nsPoint& aCenter, in ComputeCircleRadius() argument
61 nscoord horizontal = ComputeShapeRadius(styleShapeRadius, aCenter.x, in ComputeCircleRadius()
63 nscoord vertical = ComputeShapeRadius(styleShapeRadius, aCenter.y, in ComputeCircleRadius()
79 const UniquePtr<StyleBasicShape>& aBasicShape, const nsPoint& aCenter, in ComputeEllipseRadii() argument
91 ComputeShapeRadius(radiusX, aCenter.x, aRefBox.x, aRefBox.XMost()); in ComputeEllipseRadii()
99 ComputeShapeRadius(radiusY, aCenter.y, aRefBox.y, aRefBox.YMost()); in ComputeEllipseRadii()
/dports/cad/opencascade/opencascade-7.6.0/src/Graphic3d/
H A DGraphic3d_TransformPers.hxx382 gp_XYZ aCenter = theCamera->Center().XYZ() + aForward.XYZ() * (aFocus - theCamera->Distance()); in Apply() local
390 aCenter += aDeltaX; in Apply()
394 aCenter -= aDeltaX; in Apply()
403 aCenter += aDeltaY; in Apply()
407 aCenter -= aDeltaY; in Apply()
412 Graphic3d_TransformUtils::Translate (aWorldView, aCenter.X(), aCenter.Y(), aCenter.Z()); in Apply()
428 gp_XYZ aCenter (0.0, 0.0, -aFocus); in Apply() local
431aCenter.SetX (-aViewDim.X() * theCamera->NDC2dOffsetX() + (Standard_Real(myParams.Params2d.OffsetX… in Apply()
434 aCenter.SetX (-aCenter.X()); in Apply()
442 aCenter.SetY (-aCenter.Y()); in Apply()
[all …]
/dports/cad/opencascade/opencascade-7.6.0/inc/
H A DGraphic3d_TransformPers.hxx382 gp_XYZ aCenter = theCamera->Center().XYZ() + aForward.XYZ() * (aFocus - theCamera->Distance()); in Apply() local
390 aCenter += aDeltaX; in Apply()
394 aCenter -= aDeltaX; in Apply()
403 aCenter += aDeltaY; in Apply()
407 aCenter -= aDeltaY; in Apply()
412 Graphic3d_TransformUtils::Translate (aWorldView, aCenter.X(), aCenter.Y(), aCenter.Z()); in Apply()
428 gp_XYZ aCenter (0.0, 0.0, -aFocus); in Apply() local
431aCenter.SetX (-aViewDim.X() * theCamera->NDC2dOffsetX() + (Standard_Real(myParams.Params2d.OffsetX… in Apply()
434 aCenter.SetX (-aCenter.X()); in Apply()
442 aCenter.SetY (-aCenter.Y()); in Apply()
[all …]
/dports/math/vtk9/VTK-9.1.0/Interaction/Widgets/
H A DvtkProp3DButtonRepresentation.cxx151 double bounds[6], center[3], aBds[6], aCenter[3]; in PlaceWidget() local
171 aCenter[0] = (aBds[0] + aBds[1]) / 2.0; in PlaceWidget()
172 aCenter[1] = (aBds[2] + aBds[3]) / 2.0; in PlaceWidget()
173 aCenter[2] = (aBds[4] + aBds[5]) / 2.0; in PlaceWidget()
177 (*iter).second.Origin[0] = aCenter[0]; in PlaceWidget()
178 (*iter).second.Origin[1] = aCenter[1]; in PlaceWidget()
179 (*iter).second.Origin[2] = aCenter[2]; in PlaceWidget()
181 (*iter).second.Translation[0] = center[0] - aCenter[0]; in PlaceWidget()
182 (*iter).second.Translation[1] = center[1] - aCenter[1]; in PlaceWidget()
183 (*iter).second.Translation[2] = center[2] - aCenter[2]; in PlaceWidget()
/dports/math/vtk8/VTK-8.2.0/Interaction/Widgets/
H A DvtkProp3DButtonRepresentation.cxx153 double bounds[6], center[3], aBds[6], aCenter[3]; in PlaceWidget() local
173 aCenter[0] = (aBds[0]+aBds[1]) / 2.0; in PlaceWidget()
174 aCenter[1] = (aBds[2]+aBds[3]) / 2.0; in PlaceWidget()
175 aCenter[2] = (aBds[4]+aBds[5]) / 2.0; in PlaceWidget()
179 (*iter).second.Origin[0] = aCenter[0]; in PlaceWidget()
180 (*iter).second.Origin[1] = aCenter[1]; in PlaceWidget()
181 (*iter).second.Origin[2] = aCenter[2]; in PlaceWidget()
183 (*iter).second.Translation[0] = center[0]-aCenter[0]; in PlaceWidget()
184 (*iter).second.Translation[1] = center[1]-aCenter[1]; in PlaceWidget()
185 (*iter).second.Translation[2] = center[2]-aCenter[2]; in PlaceWidget()
/dports/math/vtk6/VTK-6.2.0/Interaction/Widgets/
H A DvtkProp3DButtonRepresentation.cxx149 double bounds[6], center[3], aBds[6], aCenter[3]; in PlaceWidget() local
169 aCenter[0] = (aBds[0]+aBds[1]) / 2.0; in PlaceWidget()
170 aCenter[1] = (aBds[2]+aBds[3]) / 2.0;; in PlaceWidget()
171 aCenter[2] = (aBds[4]+aBds[5]) / 2.0;; in PlaceWidget()
175 (*iter).second.Origin[0] = aCenter[0]; in PlaceWidget()
176 (*iter).second.Origin[1] = aCenter[1]; in PlaceWidget()
177 (*iter).second.Origin[2] = aCenter[2]; in PlaceWidget()
179 (*iter).second.Translation[0] = center[0]-aCenter[0]; in PlaceWidget()
180 (*iter).second.Translation[1] = center[1]-aCenter[1]; in PlaceWidget()
181 (*iter).second.Translation[2] = center[2]-aCenter[2]; in PlaceWidget()

12345678910>>...23