comparison Postarc/Postarc/Feature/Polyline.cs @ 0:1aca3d413885 tip

Initial import of Postarc
author Christian Lins <christian.lins@intevation.de>
date Fri, 05 Oct 2012 23:55:06 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:1aca3d413885
1 /*
2 * Postarc
3 *
4 * Author:
5 * Christian Lins <christian.lins@intevation.de>
6 *
7 * Copyright:
8 * Copyright (C) 2012 Intevation GmbH <http://www.intevation.de/>
9 *
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 */
23
24 using System;
25 using System.Collections.Generic;
26 using System.Linq;
27 using System.Text;
28 using ESRI.ArcGIS.Geometry;
29
30 namespace Postarc.Feature
31 {
32 public class Polyline : IWKTGeometry, IPolyline
33 {
34 public void Densify(double maxSegmentLength, double maxDeviation)
35 {
36 throw new NotImplementedException();
37 }
38
39 public esriGeometryDimension Dimension
40 {
41 get { throw new NotImplementedException(); }
42 }
43
44 public IEnvelope Envelope
45 {
46 get { throw new NotImplementedException(); }
47 }
48
49 public IPoint FromPoint
50 {
51 get
52 {
53 throw new NotImplementedException();
54 }
55 set
56 {
57 throw new NotImplementedException();
58 }
59 }
60
61 public void Generalize(double maxAllowableOffset)
62 {
63 throw new NotImplementedException();
64 }
65
66 public void GeoNormalize()
67 {
68 throw new NotImplementedException();
69 }
70
71 public void GeoNormalizeFromLongitude(double Longitude)
72 {
73 throw new NotImplementedException();
74 }
75
76 public esriGeometryType GeometryType
77 {
78 get { throw new NotImplementedException(); }
79 }
80
81 public void GetSubcurve(double fromDistance, double toDistance, bool asRatio, out ICurve outSubcurve)
82 {
83 throw new NotImplementedException();
84 }
85
86 public bool IsClosed
87 {
88 get { throw new NotImplementedException(); }
89 }
90
91 public bool IsEmpty
92 {
93 get { throw new NotImplementedException(); }
94 }
95
96 public double Length
97 {
98 get { throw new NotImplementedException(); }
99 }
100
101 public void Project(ISpatialReference newReferenceSystem)
102 {
103 throw new NotImplementedException();
104 }
105
106 public void QueryEnvelope(IEnvelope outEnvelope)
107 {
108 throw new NotImplementedException();
109 }
110
111 public void QueryFromPoint(IPoint from)
112 {
113 throw new NotImplementedException();
114 }
115
116 public void QueryNormal(esriSegmentExtension extension, double DistanceAlongCurve, bool asRatio, double Length, ILine normal)
117 {
118 throw new NotImplementedException();
119 }
120
121 public void QueryPoint(esriSegmentExtension extension, double DistanceAlongCurve, bool asRatio, IPoint outPoint)
122 {
123 throw new NotImplementedException();
124 }
125
126 public void QueryPointAndDistance(esriSegmentExtension extension, IPoint inPoint, bool asRatio, IPoint outPoint, ref double DistanceAlongCurve, ref double distanceFromCurve, ref bool bRightSide)
127 {
128 throw new NotImplementedException();
129 }
130
131 public void QueryTangent(esriSegmentExtension extension, double DistanceAlongCurve, bool asRatio, double Length, ILine tangent)
132 {
133 throw new NotImplementedException();
134 }
135
136 public void QueryToPoint(IPoint to)
137 {
138 throw new NotImplementedException();
139 }
140
141 public bool Reshape(IPath reshapeSource)
142 {
143 throw new NotImplementedException();
144 }
145
146 public void ReverseOrientation()
147 {
148 throw new NotImplementedException();
149 }
150
151 public void SetEmpty()
152 {
153 throw new NotImplementedException();
154 }
155
156 public void SimplifyNetwork()
157 {
158 throw new NotImplementedException();
159 }
160
161 public void Smooth(double maxAllowableOffset)
162 {
163 throw new NotImplementedException();
164 }
165
166 public void SnapToSpatialReference()
167 {
168 throw new NotImplementedException();
169 }
170
171 public ISpatialReference SpatialReference
172 {
173 get
174 {
175 throw new NotImplementedException();
176 }
177 set
178 {
179 throw new NotImplementedException();
180 }
181 }
182
183 public void SplitAtDistance(double distance, bool asRatio, bool createPart, out bool SplitHappened, out int newPartIndex, out int newSegmentIndex)
184 {
185 throw new NotImplementedException();
186 }
187
188 public void SplitAtPoint(IPoint splitPoint, bool projectOnto, bool createPart, out bool SplitHappened, out int newPartIndex, out int newSegmentIndex)
189 {
190 throw new NotImplementedException();
191 }
192
193 public IPoint ToPoint
194 {
195 get
196 {
197 throw new NotImplementedException();
198 }
199 set
200 {
201 throw new NotImplementedException();
202 }
203 }
204
205 public void Weed(double maxAllowableOffsetFactor)
206 {
207 throw new NotImplementedException();
208 }
209
210 public string GetWKT()
211 {
212 throw new NotImplementedException();
213 }
214
215
216 public void SetWKT(string wkt)
217 {
218 throw new NotImplementedException();
219 }
220 }
221 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)