Click here to Skip to main content
15,886,199 members
Articles / Programming Languages / Visual Basic

Add a point to a polyline

Rate me:
Please Sign up or sign in to vote.
4.84/5 (7 votes)
18 Sep 2012CPOL4 min read 42.1K   2K   22  
Insert a new point to a polyline
<?xml version="1.0"?>
<doc>
<assembly>
<name>
WPFPointInPolyLine
</name>
</assembly>
<members>
<member name="M:WPFPointInPolyLine.MainWindow.InitializeComponent">
	<summary>
InitializeComponent
</summary>
</member><member name="T:WPFPointInPolyLine.MainWindow">
	<summary>
MainWindow
</summary>
</member><member name="M:WPFPointInPolyLine.Application.InitializeComponent">
	<summary>
InitializeComponent
</summary>
</member><member name="M:WPFPointInPolyLine.Application.Main">
	<summary>
Application Entry Point.
</summary>
</member><member name="T:WPFPointInPolyLine.Application">
	<summary>
Application
</summary>
</member><member name="M:WPFPointInPolyLine.Geometry.WhichSide(System.Windows.Point,System.Windows.Point,System.Windows.Point)">
	<summary>
 Finds which side of a line the point is
 </summary>
	<param name="PointToBeEvaluated">Evaluation point</param>
	<param name="StartPointOnLine">Startpoint of line</param>
	<param name="EndPointOnLine">Endpoint on line</param>
	<returns>-1 for a point to the right, 0 for a point on the line, +1 for a point to the left</returns>
	<remarks></remarks>
</member><member name="M:WPFPointInPolyLine.Geometry.DistanceFromLine(System.Windows.Point,System.Windows.Point,System.Windows.Point)">
	<summary>
 Returns the distance from a point to a line
 </summary>
	<param name="LinePoint1"></param>
	<param name="LinePoint2"></param>
	<param name="TestPoint"></param>
	<returns></returns>
	<remarks></remarks>
</member><member name="M:WPFPointInPolyLine.Geometry.Angles(System.Windows.Point,System.Windows.Point,System.Windows.Point)">
	<summary>
 Calculate the angel in degrees between point 1 and 3 at point 2
 </summary>
	<param name="Point1"></param>
	<param name="Point2"></param>
	<param name="Point3"></param>
	<returns></returns>
	<remarks></remarks>
</member><member name="M:WPFPointInPolyLine.Geometry.Normal2D(System.Windows.Point,System.Windows.Point,System.Double)">
	<summary>
 Calculates the Normal vector at point 1
 </summary>
	<param name="Point1"></param>
	<param name="point2"></param>
	<returns></returns>
	<remarks></remarks>
</member><member name="M:WPFPointInPolyLine.Geometry.InsertPoint(System.Windows.Media.PointCollection,System.Windows.Point)">
	<summary>
 Insert a new point to the line
 </summary>
	<param name="OriginalPointColletion"></param>
	<param name="NewPoint"></param>
	<returns></returns>
	<remarks></remarks>
</member><member name="P:WPFPointInPolyLine.My.Resources.Resources.ResourceManager">
	<summary>
  Returns the cached ResourceManager instance used by this class.
</summary>
</member><member name="P:WPFPointInPolyLine.My.Resources.Resources.Culture">
	<summary>
  Overrides the current thread's CurrentUICulture property for all
  resource lookups using this strongly typed resource class.
</summary>
</member><member name="T:WPFPointInPolyLine.My.Resources.Resources">
	<summary>
  A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member><member name="P:WPFPointInPolyLine.My.MyWpfExtension.Application">
	<summary>
 Returns the application object for the running application
 </summary>
</member><member name="P:WPFPointInPolyLine.My.MyWpfExtension.Computer">
	<summary>
 Returns information about the host computer.
 </summary>
</member><member name="P:WPFPointInPolyLine.My.MyWpfExtension.User">
	<summary>
 Returns information for the current user.  If you wish to run the application with the current 
 Windows user credentials, call My.User.InitializeWithWindowsUser().
 </summary>
</member><member name="P:WPFPointInPolyLine.My.MyWpfExtension.Log">
	<summary>
 Returns the application log. The listeners can be configured by the application's configuration file.
 </summary>
</member><member name="P:WPFPointInPolyLine.My.MyWpfExtension.Windows">
	<summary>
 Returns the collection of Windows defined in the project.
 </summary>
</member><member name="T:WPFPointInPolyLine.My.MyWpfExtension">
	<summary>
 Module used to define the properties that are available in the My Namespace for WPF
 </summary>
	<remarks></remarks>
</member>
</members>
</doc>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer
Norway Norway
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions