GEOS  3.9.1dev
SineStarFactory.h
Go to the documentation of this file.
1 /**********************************************************************
2  *
3  * GEOS - Geometry Engine Open Source
4  * http://geos.osgeo.org
5  *
6  * Copyright (C) 2011 Sandro Santilli <strk@kbt.io
7  *
8  * This is free software; you can redistribute and/or modify it under
9  * the terms of the GNU Lesser General Public Licence as published
10  * by the Free Software Foundation.
11  * See the COPYING file for more information.
12  *
13  **********************************************************************
14  *
15  * Last port: geom/util/SineStarFactory.java r378 (JTS-1.12)
16  *
17  **********************************************************************/
18 
19 #ifndef GEOS_UTIL_SINESTARFACTORY_H
20 #define GEOS_UTIL_SINESTARFACTORY_H
21 
22 #include <geos/export.h>
23 
24 #include <geos/util/GeometricShapeFactory.h> // for inheritance
25 
26 #include <memory>
27 
28 #ifdef _MSC_VER
29 #pragma warning(push)
30 #pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class
31 #endif
32 
33 // Forward declarations
34 namespace geos {
35 namespace geom {
36 class Coordinate;
37 class Envelope;
38 class Polygon;
39 class GeometryFactory;
40 class PrecisionModel;
41 class LineString;
42 }
43 }
44 
45 namespace geos {
46 namespace geom { // geos::geom
47 namespace util { // geos::geom::util
48 
59 
60 protected:
61 
62  int numArms;
64 
65 public:
66 
76  :
77  geos::util::GeometricShapeFactory(fact),
78  numArms(8),
79  armLengthRatio(0.5)
80  {}
81 
87  void
88  setNumArms(int nArms)
89  {
90  numArms = nArms;
91  }
92 
100  void
101  setArmLengthRatio(double armLenRatio)
102  {
103  armLengthRatio = armLenRatio;
104  }
105 
111  std::unique_ptr<Polygon> createSineStar() const;
112 
113 
114 };
115 
116 } // namespace geos::geom::util
117 } // namespace geos::geom
118 } // namespace geos
119 
120 #ifdef _MSC_VER
121 #pragma warning(pop)
122 #endif
123 
124 #endif // GEOS_UTIL_SINESTARFACTORY_H
#define GEOS_DLL
Definition: export.h:28
void setArmLengthRatio(double armLenRatio)
SineStarFactory(const geom::GeometryFactory *fact)
Supplies a set of utility methods for building Geometry objects from CoordinateSequence or other Geom...
Computes various kinds of common geometric shapes.
Basic namespace for all GEOS functionalities.