All pastes #2076410 Raw Edit

Anonymous

public cpp v1 · immutable
#2076410 ·published 2011-06-07 21:34 UTC
rendered paste body
	void DrawDataPoints(QPainter &painter)	{		QTransform combined = painter.combinedTransform();		painter.save();		painter.resetTransform();				painter.setPen(Qt::red);		for(unsigned int i = 0; i < DataPoints.size(); i++)		{			//TODO: Once file stuff worked out switch 1 and 0 around			QPointF Temp(DataPoints[i].cartesian(1),DataPoints[i].cartesian(0));					painter.drawPoint(Temp);						painter.drawText(combined.map(Temp),"BASSEY WAS HERE IN THE OCEAN");								}				painter.restore();			}