Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
prepare commit script run
  • Loading branch information
vinayan authored and mhugent committed Jan 12, 2013
1 parent 0db0e7a commit f210b84
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 43 deletions.
80 changes: 41 additions & 39 deletions src/app/qgsmaptoolrotatefeature.cpp
Expand Up @@ -43,32 +43,34 @@ QgsMapToolRotateFeature::~QgsMapToolRotateFeature()

void QgsMapToolRotateFeature::canvasMoveEvent( QMouseEvent * e )
{
if( mCtrl == true )
if ( mCtrl == true )
{
mAnchorPoint->setCenter(toMapCoordinates(e->pos()));
mStartPointMapCoords = toMapCoordinates(e->pos());
mStPoint = e->pos();
return;
mAnchorPoint->setCenter( toMapCoordinates( e->pos() ) );
mStartPointMapCoords = toMapCoordinates( e->pos() );
mStPoint = e->pos();
return;


}
if ( mRubberBand )
{
double XDistance = mStPoint.x() - e->pos().x();
double YDistance = mStPoint.y() - e->pos().y();
mRotation = atan2(YDistance, XDistance) * (180/PI);
mRotation = atan2( YDistance, XDistance ) * ( 180 / PI );

mStPoint = toCanvasCoordinates(mStartPointMapCoords);
mStPoint = toCanvasCoordinates( mStartPointMapCoords );
double offsetX = mStPoint.x() - mRubberBand->x();
double offsetY = mStPoint.y() - mRubberBand->y();

mRubberBand->setTransform(QTransform().translate(offsetX,offsetY).rotate(mRotation).translate(-1 * offsetX, -1 * offsetY));
mRubberBand->setTransform( QTransform().translate( offsetX, offsetY ).rotate( mRotation ).translate( -1 * offsetX, -1 * offsetY ) );
mRubberBand->update();
}
}

void QgsMapToolRotateFeature::canvasPressEvent( QMouseEvent * e )
{
mRotation = 0;
if( mCtrl == true )
if ( mCtrl == true )
{
return;
}
Expand Down Expand Up @@ -119,52 +121,52 @@ void QgsMapToolRotateFeature::canvasReleaseEvent( QMouseEvent * e )
}

//calculations for affine transformation
double angle = -1 * mRotation * (PI/180);
double angle = -1 * mRotation * ( PI / 180 );
QgsPoint anchorPoint = mStartPointMapCoords;
double a = cos(angle);
double b = -1 * sin(angle);
double c = anchorPoint.x() - cos(angle) * anchorPoint.x() + sin(angle) * anchorPoint.y();
double d = sin(angle);
double ee = cos(angle);
double f = anchorPoint.y() - sin(angle) * anchorPoint.x() - cos(angle) * anchorPoint.y();
double a = cos( angle );
double b = -1 * sin( angle );
double c = anchorPoint.x() - cos( angle ) * anchorPoint.x() + sin( angle ) * anchorPoint.y();
double d = sin( angle );
double ee = cos( angle );
double f = anchorPoint.y() - sin( angle ) * anchorPoint.x() - cos( angle ) * anchorPoint.y();

vlayer->beginEditCommand( tr( "Features Rotated" ) );

int start;
if ( vlayer->geometryType()==2)
if ( vlayer->geometryType() == 2 )
{
start=1;
start = 1;
}
else
{
start=0;
start = 0;
}

int i = 0;
foreach ( QgsFeatureId id, mMovedFeatures )
{
QgsFeature feat;
vlayer->featureAtId(id,feat);
vlayer->featureAtId( id, feat );
QgsGeometry* geom = feat.geometry();
i = start;

QgsPoint vertex = geom->vertexAt(i);
while ( vertex != QgsPoint(0,0))
QgsPoint vertex = geom->vertexAt( i );
while ( vertex != QgsPoint( 0, 0 ) )
{
double newX = a * vertex.x() + b * vertex.y() + c;
double newY = d * vertex.x() + ee * vertex.y() + f;
double newX = a * vertex.x() + b * vertex.y() + c;
double newY = d * vertex.x() + ee * vertex.y() + f;

vlayer->moveVertex(newX,newY,id,i);
i = i + 1;
vertex = geom->vertexAt(i);
vlayer->moveVertex( newX, newY, id, i );
i = i + 1;
vertex = geom->vertexAt( i );
}

}

double anchorX = a * anchorPoint.x() + b * anchorPoint.y() + c;
double anchorY = d * anchorPoint.x() + ee * anchorPoint.y() + f;

mAnchorPoint->setCenter(QgsPoint(anchorX,anchorY));
mAnchorPoint->setCenter( QgsPoint( anchorX, anchorY ) );

delete mRubberBand;
mRubberBand = 0;
Expand Down Expand Up @@ -192,9 +194,9 @@ void QgsMapToolRotateFeature::resetAnchor()
QgsRectangle bound = vlayer->boundingBoxOfSelected();
mStartPointMapCoords = bound.center();

mAnchorPoint->setCenter(mStartPointMapCoords);
mAnchorPoint->setCenter( mStartPointMapCoords );

mStPoint = toCanvasCoordinates(mStartPointMapCoords);
mStPoint = toCanvasCoordinates( mStartPointMapCoords );
}

}
Expand All @@ -205,22 +207,22 @@ void QgsMapToolRotateFeature::keyPressEvent( QKeyEvent* e )
if ( e->key() == Qt::Key_Control )
{
mCtrl = true;
mCanvas->viewport()->setMouseTracking(true);
mCanvas->viewport()->setMouseTracking( true );
return;
}

if (e->key() == Qt::Key_Escape)
{
this->resetAnchor();
}
if ( e->key() == Qt::Key_Escape )
{
this->resetAnchor();
}
}

void QgsMapToolRotateFeature::keyReleaseEvent( QKeyEvent* e )
{
if ( e->key() == Qt::Key_Control )
{
mCtrl = false;
mCanvas->viewport()->setMouseTracking(false);
mCanvas->viewport()->setMouseTracking( false );

return;
}
Expand Down Expand Up @@ -254,12 +256,12 @@ void QgsMapToolRotateFeature::activate()
QgsRectangle bound = vlayer->boundingBoxOfSelected();
mStartPointMapCoords = bound.center();

mAnchorPoint = new QgsVertexMarker(mCanvas);
mAnchorPoint = new QgsVertexMarker( mCanvas );
mAnchorPoint->setIconType( QgsVertexMarker::ICON_CROSS );
mAnchorPoint->setCenter(mStartPointMapCoords);
mAnchorPoint->setCenter( mStartPointMapCoords );
mAnchorPoint->acceptTouchEvents();

mStPoint = toCanvasCoordinates(mStartPointMapCoords);
mStPoint = toCanvasCoordinates( mStartPointMapCoords );
mCtrl = false;

QgsMapTool::activate();
Expand Down
6 changes: 2 additions & 4 deletions src/app/qgsmaptoolrotatefeature.h
Expand Up @@ -40,7 +40,6 @@ class QgsMapToolRotateFeature: public QgsMapToolEdit
void keyReleaseEvent( QKeyEvent* e );



//! to reset the rotation anchor to selectionbound center
void resetAnchor();
//! called when map tool is being deactivated
Expand All @@ -49,11 +48,10 @@ class QgsMapToolRotateFeature: public QgsMapToolEdit
void activate();



private:

QgsGeometry rotateGeometry(QgsGeometry geom, QgsPoint point, double angle);
QgsPoint rotatePoint(QgsPoint point, double angle);
QgsGeometry rotateGeometry( QgsGeometry geom, QgsPoint point, double angle );
QgsPoint rotatePoint( QgsPoint point, double angle );

/**Start point of the move in map coordinates*/
QgsPoint mStartPointMapCoords;
Expand Down

0 comments on commit f210b84

Please sign in to comment.