简体   繁体   中英

Qt - Real time drawing

I want to show a car's path in a window in real time, how to do that, and what classes I have to use. Is there anything like drawing area, in Qt.

Any Help will be appreciated.

You'll need to read up on QGraphicsview . There are several helpful examples that show every bit of what functionality is present here. The implementation itself... I guess it's just a bunch of QLine s on a QGraphicsScene . The realtime part is handled by calling repaint or paintevent or whatever it's called periodically, or setting up a complex animation.

Qt之上的Qwt库对此非常有用

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM