diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Postarc/Postarc/Feature/Polyline.cs	Fri Oct 05 23:55:06 2012 +0200
@@ -0,0 +1,221 @@
+/*
+ * Postarc
+ *
+ * Author:
+ * Christian Lins <christian.lins@intevation.de>
+ *
+ * Copyright:
+ * Copyright (C) 2012 Intevation GmbH <http://www.intevation.de/>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using ESRI.ArcGIS.Geometry;
+
+namespace Postarc.Feature
+{
+	public class Polyline : IWKTGeometry, IPolyline
+	{
+		public void Densify(double maxSegmentLength, double maxDeviation)
+		{
+			throw new NotImplementedException();
+		}
+
+		public esriGeometryDimension Dimension
+		{
+			get { throw new NotImplementedException(); }
+		}
+
+		public IEnvelope Envelope
+		{
+			get { throw new NotImplementedException(); }
+		}
+
+		public IPoint FromPoint
+		{
+			get
+			{
+				throw new NotImplementedException();
+			}
+			set
+			{
+				throw new NotImplementedException();
+			}
+		}
+
+		public void Generalize(double maxAllowableOffset)
+		{
+			throw new NotImplementedException();
+		}
+
+		public void GeoNormalize()
+		{
+			throw new NotImplementedException();
+		}
+
+		public void GeoNormalizeFromLongitude(double Longitude)
+		{
+			throw new NotImplementedException();
+		}
+
+		public esriGeometryType GeometryType
+		{
+			get { throw new NotImplementedException(); }
+		}
+
+		public void GetSubcurve(double fromDistance, double toDistance, bool asRatio, out ICurve outSubcurve)
+		{
+			throw new NotImplementedException();
+		}
+
+		public bool IsClosed
+		{
+			get { throw new NotImplementedException(); }
+		}
+
+		public bool IsEmpty
+		{
+			get { throw new NotImplementedException(); }
+		}
+
+		public double Length
+		{
+			get { throw new NotImplementedException(); }
+		}
+
+		public void Project(ISpatialReference newReferenceSystem)
+		{
+			throw new NotImplementedException();
+		}
+
+		public void QueryEnvelope(IEnvelope outEnvelope)
+		{
+			throw new NotImplementedException();
+		}
+
+		public void QueryFromPoint(IPoint from)
+		{
+			throw new NotImplementedException();
+		}
+
+		public void QueryNormal(esriSegmentExtension extension, double DistanceAlongCurve, bool asRatio, double Length, ILine normal)
+		{
+			throw new NotImplementedException();
+		}
+
+		public void QueryPoint(esriSegmentExtension extension, double DistanceAlongCurve, bool asRatio, IPoint outPoint)
+		{
+			throw new NotImplementedException();
+		}
+
+		public void QueryPointAndDistance(esriSegmentExtension extension, IPoint inPoint, bool asRatio, IPoint outPoint, ref double DistanceAlongCurve, ref double distanceFromCurve, ref bool bRightSide)
+		{
+			throw new NotImplementedException();
+		}
+
+		public void QueryTangent(esriSegmentExtension extension, double DistanceAlongCurve, bool asRatio, double Length, ILine tangent)
+		{
+			throw new NotImplementedException();
+		}
+
+		public void QueryToPoint(IPoint to)
+		{
+			throw new NotImplementedException();
+		}
+
+		public bool Reshape(IPath reshapeSource)
+		{
+			throw new NotImplementedException();
+		}
+
+		public void ReverseOrientation()
+		{
+			throw new NotImplementedException();
+		}
+
+		public void SetEmpty()
+		{
+			throw new NotImplementedException();
+		}
+
+		public void SimplifyNetwork()
+		{
+			throw new NotImplementedException();
+		}
+
+		public void Smooth(double maxAllowableOffset)
+		{
+			throw new NotImplementedException();
+		}
+
+		public void SnapToSpatialReference()
+		{
+			throw new NotImplementedException();
+		}
+
+		public ISpatialReference SpatialReference
+		{
+			get
+			{
+				throw new NotImplementedException();
+			}
+			set
+			{
+				throw new NotImplementedException();
+			}
+		}
+
+		public void SplitAtDistance(double distance, bool asRatio, bool createPart, out bool SplitHappened, out int newPartIndex, out int newSegmentIndex)
+		{
+			throw new NotImplementedException();
+		}
+
+		public void SplitAtPoint(IPoint splitPoint, bool projectOnto, bool createPart, out bool SplitHappened, out int newPartIndex, out int newSegmentIndex)
+		{
+			throw new NotImplementedException();
+		}
+
+		public IPoint ToPoint
+		{
+			get
+			{
+				throw new NotImplementedException();
+			}
+			set
+			{
+				throw new NotImplementedException();
+			}
+		}
+
+		public void Weed(double maxAllowableOffsetFactor)
+		{
+			throw new NotImplementedException();
+		}
+
+                public string GetWKT()
+                {
+                    throw new NotImplementedException();
+                }
+
+
+                public void SetWKT(string wkt)
+                {
+                    throw new NotImplementedException();
+                }
+        }
+}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)