25 #import <Foundation/Foundation.h>
26 #import <ArcGIS/AGSObject.h>
27 #import <ArcGIS/AGSPoint.h>
45 #pragma mark initializers
53 -(instancetype)initWithCenter:(
AGSPoint*)center
54 maxSegmentLength:(
double)maxSegmentLength
55 semiAxisLength:(
double)semiAxisLength;
71 -(instancetype)initWithAxisDirection:(
double)axisDirection
75 maxPointCount:(NSInteger)maxPointCount
76 maxSegmentLength:(
double)maxSegmentLength
78 sectorAngle:(
double)sectorAngle
79 semiAxis1Length:(
double)semiAxis1Length
80 semiAxis2Length:(
double)semiAxis2Length
81 startDirection:(
double)startDirection;
91 -(instancetype)initWithCenter:(
AGSPoint *)center
92 semiAxis1Length:(
double)semiAxis1Length
93 semiAxis2Length:(
double)semiAxis2Length
94 sectorAngle:(
double)sectorAngle
95 startDirection:(
double)startDirection;
103 +(instancetype)parametersWithCenter:(
AGSPoint*)center
104 maxSegmentLength:(
double)maxSegmentLength
105 semiAxisLength:(
double)semiAxisLength;
127 +(instancetype)parametersWithAxisDirection:(
double)axisDirection
131 maxPointCount:(NSInteger)maxPointCount
132 maxSegmentLength:(
double)maxSegmentLength
134 sectorAngle:(
double)sectorAngle
135 semiAxis1Length:(
double)semiAxis1Length
136 semiAxis2Length:(
double)semiAxis2Length
137 startDirection:(
double)startDirection;
147 +(instancetype)parametersWithCenter:(
AGSPoint *)center
148 semiAxis1Length:(
double)semiAxis1Length
149 semiAxis2Length:(
double)semiAxis2Length
150 sectorAngle:(
double)sectorAngle
151 startDirection:(
double)startDirection;
154 #pragma mark properties
AGSGeometryType
Definition: AGSGeometry.h:49
Defines an angular unit of measurement.
Definition: AGSAngularUnit.h:54
Parameters for geodesicSectorWithParameters: (AGSGeometryEngine)
Definition: AGSGeodesicSectorParameters.h:42
double semiAxis1Length
Definition: AGSGeodesicSectorParameters.h:164
double axisDirection
Definition: AGSGeodesicSectorParameters.h:190
AGSGeometryType geometryType
Definition: AGSGeodesicSectorParameters.h:216
double sectorAngle
Definition: AGSGeodesicSectorParameters.h:203
AGSAngularUnit * angularUnit
Definition: AGSGeodesicSectorParameters.h:185
instancetype geodesicSectorParameters()
NSInteger maxPointCount
Definition: AGSGeodesicSectorParameters.h:221
double maxSegmentLength
Definition: AGSGeodesicSectorParameters.h:208
AGSLinearUnit * linearUnit
Definition: AGSGeodesicSectorParameters.h:178
double semiAxis2Length
Definition: AGSGeodesicSectorParameters.h:171
AGSPoint * center
Definition: AGSGeodesicSectorParameters.h:159
double startDirection
Definition: AGSGeodesicSectorParameters.h:195
Defines a linear unit of measurement.
Definition: AGSLinearUnit.h:60
Definition: AGSObject.h:28
A location defined by x and y (and optionally z) coordinates.
Definition: AGSPoint.h:73