comparison Framework/Scene2DViewport/MeasureToolsToolbox.cpp @ 880:9953f16c304d am-dev

Merge
author Alain Mazy <alain@mazy.be>
date Fri, 05 Jul 2019 15:33:02 +0200
parents a29c13497557
children 0c5201499af8
comparison
equal deleted inserted replaced
879:12b591d5d63c 880:9953f16c304d
320 textLayer->SetPosition( 320 textLayer->SetPosition(
321 p.GetX() + xoffsets[i] * pixelToScene, 321 p.GetX() + xoffsets[i] * pixelToScene,
322 p.GetY() + yoffsets[i] * pixelToScene); 322 p.GetY() + yoffsets[i] * pixelToScene);
323 } 323 }
324 } 324 }
325
326 std::ostream& operator<<(std::ostream& os, const ScenePoint2D& p)
327 {
328 os << "x = " << p.GetX() << " , y = " << p.GetY();
329 return os;
330 }
331
325 } 332 }