GEOS 3.6.2
SineStarFactory.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (C) 2011 Sandro Santilli <strk@keybit.net
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
34namespace 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
45namespace geos {
46namespace geom { // geos::geom
47namespace util { // geos::geom::util
48
59
60protected:
61
62 int numArms;
63 double armLengthRatio;
64
65public:
66
76 :
78 numArms(8),
79 armLengthRatio(0.5)
80 {}
81
87 void setNumArms(int nArms)
88 {
89 numArms = nArms;
90 }
91
99 void setArmLengthRatio(double armLenRatio)
100 {
101 armLengthRatio = armLenRatio;
102 }
103
109 std::auto_ptr<Polygon> createSineStar() const;
110
111
112};
113
114} // namespace geos::geom::util
115} // namespace geos::geom
116} // namespace geos
117
118#ifdef _MSC_VER
119#pragma warning(pop)
120#endif
121
122#endif // GEOS_UTIL_SINESTARFACTORY_H
Coordinate is the lightweight class used to store coordinates.
Definition Coordinate.h:60
An Envelope defines a rectangulare region of the 2D coordinate plane.
Definition Envelope.h:53
Supplies a set of utility methods for building Geometry objects from CoordinateSequence or other Geom...
Definition GeometryFactory.h:67
Definition LineString.h:70
Represents a linear polygon, which may include holes.
Definition Polygon.h:67
Specifies the precision model of the Coordinate in a Geometry.
Definition PrecisionModel.h:87
void setArmLengthRatio(double armLenRatio)
Definition SineStarFactory.h:99
void setNumArms(int nArms)
Definition SineStarFactory.h:87
std::auto_ptr< Polygon > createSineStar() const
SineStarFactory(const geom::GeometryFactory *fact)
Definition SineStarFactory.h:75
Definition GeometricShapeFactory.h:66
GeometricShapeFactory(const geom::GeometryFactory *factory)
Create a shape factory which will create shapes using the given GeometryFactory.
Provides classes that parse and modify Geometry objects.
Definition ComponentCoordinateExtracter.h:30
Contains the Geometry interface hierarchy and supporting classes.
Definition IndexedNestedRingTester.h:26
Basic namespace for all GEOS functionalities.
Definition IndexedNestedRingTester.h:25