A struct that models a point in 2-d cartesian coordinate space with double coordinates.

Namespace: yWorks.Canvas.Geometry.Structs
Assembly: yWorks.yFilesWPF.Viewer (in yWorks.yFilesWPF.Viewer.dll) Version: 2.2.0.2 (2.2.0.2)

Syntax

C#
[ObfuscationAttribute(StripAfterObfuscation = false, Exclude = true, 
	ApplyToMembers = true)]
[TypeConverterAttribute(typeof(PointDConverter))]
public struct PointD : IPoint
Visual Basic
<ObfuscationAttribute(StripAfterObfuscation := False, Exclude := True,  _
	ApplyToMembers := True)> _
<TypeConverterAttribute(GetType(PointDConverter))> _
Public Structure PointD _
	Implements IPoint

Remarks

This struct implements the IPoint interface so that it can be used in methods that require that interface.

See Also