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

Namespace: yWorks.Canvas.Geometry.Structs
Assembly: yWorks.yFilesNET.Viewer (in yWorks.yFilesNET.Viewer.dll) Version: 4.1.0.1 (4.1.0.1)

Syntax

C#
[TypeConverterAttribute(typeof(PointDConverter))]
[ObfuscationAttribute(StripAfterObfuscation = false, Exclude = true, 
	ApplyToMembers = true)]
public struct PointD : IPoint
Visual Basic
<TypeConverterAttribute(GetType(PointDConverter))> _
<ObfuscationAttribute(StripAfterObfuscation := False, Exclude := True,  _
	ApplyToMembers := True)> _
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