2012-02-29 47 views
0

我是Qt的新手。我已經看到了在QGraphicView中添加矩形,橢圓和線的示例代碼。通過給出x,y座標,請幫助在GraphicsView中添加單個點?如何在QGraphicsView中添加點?

QGraphicsScene scene(0,0,800,600); 
QGraphicsView view(&scene); 
scene.addText("Hello, world!"); 
QPen pen(Qt::green); 
scene.addLine(0,0,200,200,pen); 
scene.addEllipse(400,300,100,100,pen); 
view.show(); 

回答

3

要的QGraphicsView添加點u可以使用下面的代碼片段..

double rad = 1; 
scene->addEllipse(x-rad, y-rad, rad*2.0, rad*2.0, 
      QPen(), QBrush(Qt::SolidPattern)); 

其中x和y是要在的QGraphicsView加點分。

相關問題