Namespace:  Hyleos.Common.Geometry
Assembly:  Hyleos.Common (in Hyleos.Common.dll) Version: 1.0.3.2 (1.0.3.2)

Syntax

C#
public static void CreateTriangle(
	PointF pt1,
	PointF pt2,
	double angle,
	double wk,
	out PointF pt3
)
Visual Basic (Declaration)
Public Shared Sub CreateTriangle ( _
	pt1 As PointF, _
	pt2 As PointF, _
	angle As Double, _
	wk As Double, _
	<OutAttribute> ByRef pt3 As PointF _
)
Visual C++
public:
static void CreateTriangle(
	PointF pt1, 
	PointF pt2, 
	double angle, 
	double wk, 
	[OutAttribute] PointF% pt3
)

Parameters

pt1
Type: System.Drawing..::.PointF
First PointF
pt2
Type: System.Drawing..::.PointF
Second PointF
angle
Type: System..::.Double
Angle in degre between : pt1-pt2/pt2-pt3
wk
Type: System..::.Double
Coefficient (default 1)
pt3
Type: System.Drawing..::.PointF %
New PointF

See Also