Isis 3 Programmer Reference
StripPolygonSeeder.h
1#ifndef StripPolygonSeeder_h
2#define StripPolygonSeeder_h
8/* SPDX-License-Identifier: CC0-1.0 */
9
10#include "geos/geom/Point.h"
11#include "geos/geom/MultiPolygon.h"
12#include "PolygonSeeder.h"
13
14namespace Isis {
15 class Pvl;
16
52 public:
54
56 virtual ~StripPolygonSeeder() {};
57
58 std::vector<geos::geom::Point *> Seed(const geos::geom::MultiPolygon *mp);
59
60 virtual PvlGroup PluginParameters(QString grpName);
61
62 protected:
63 virtual void Parse(Pvl &pvl);
64
65 private:
66 double p_Xspacing;
67 double p_Yspacing;
68 };
69};
70
71#endif
This class is used as the base class for all PolygonSeeder objects.
Contains multiple PvlContainers.
Definition PvlGroup.h:41
Container for cube-like labels.
Definition Pvl.h:119
Seed points using a grid with a staggered pattern.
double p_Xspacing
The spacing in the x direction between points.
virtual ~StripPolygonSeeder()
Destructor.
std::vector< geos::geom::Point * > Seed(const geos::geom::MultiPolygon *mp)
Seed a polygon with points.
StripPolygonSeeder(Pvl &pvl)
Construct a StripPolygonSeeder algorithm.
double p_Yspacing
The spacing in the y direction between points.
virtual void Parse(Pvl &pvl)
Parse the StripSeeder spicific parameters from the PVL.
virtual PvlGroup PluginParameters(QString grpName)
Plugin parameters.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16