Skip to content

Commit

Permalink
Fix indentation in tesselator
Browse files Browse the repository at this point in the history
  • Loading branch information
liberostelios committed Oct 9, 2017
1 parent f939932 commit 8eaa8c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/3d/qgstessellator.cpp
Expand Up @@ -264,7 +264,7 @@ void QgsTessellator::addPolygon( const QgsPolygonV2 &polygon, float extrusionHei
mData << pNormal.x() << pNormal.z() << - pNormal.y();
}
}
else if (polyline.size() >= 3)
else if ( polyline.size() >= 3 )
{
p2t::CDT *cdt = new p2t::CDT( polyline );

Expand Down

0 comments on commit 8eaa8c2

Please sign in to comment.