コード例 #1
0
ファイル: labelposition.cpp プロジェクト: tqhien/Quantum-GIS
bool LabelPosition::polygonObstacleCallback( PointSet *feat, void *ctx )
{
    PolygonCostCalculator *pCost = ( PolygonCostCalculator* ) ctx;

    LabelPosition *lp = pCost->getLabel();
    if (( feat == lp->feature ) || ( feat->getHoleOf() && feat->getHoleOf() != lp->feature ) )
    {
        return true;
    }

    pCost->update( feat );

    return true;
}
コード例 #2
0
ファイル: labelposition.cpp プロジェクト: ltbam/QGIS
  bool LabelPosition::polygonObstacleCallback( FeaturePart *obstacle, void *ctx )
  {
    PolygonCostCalculator *pCost = ( PolygonCostCalculator* ) ctx;

    LabelPosition *lp = pCost->getLabel();
    if (( obstacle == lp->feature ) || ( obstacle->getHoleOf() && obstacle->getHoleOf() != lp->feature ) )
    {
      return true;
    }

    pCost->update( obstacle );

    return true;
  }