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(
	float x1,
	float y1,
	float x2,
	float y2,
	double angle,
	double wk,
	out float x3,
	out float y3
)
Visual Basic (Declaration)
Public Shared Sub CreateTriangle ( _
	x1 As Single, _
	y1 As Single, _
	x2 As Single, _
	y2 As Single, _
	angle As Double, _
	wk As Double, _
	<OutAttribute> ByRef x3 As Single, _
	<OutAttribute> ByRef y3 As Single _
)
Visual C++
public:
static void CreateTriangle(
	float x1, 
	float y1, 
	float x2, 
	float y2, 
	double angle, 
	double wk, 
	[OutAttribute] float% x3, 
	[OutAttribute] float% y3
)

Parameters

x1
Type: System..::.Single
First PointF X Coordinate
y1
Type: System..::.Single
First PointF Y Coordinate
x2
Type: System..::.Single
Second PointF X Coordinate
y2
Type: System..::.Single
Second PointF Y Coordinate
angle
Type: System..::.Double
Angle in degre between : pt1-pt2/pt2-pt3
wk
Type: System..::.Double
Coefficient (default 1)
x3
Type: System..::.Single %
New PointF Y Coordinate
y3
Type: System..::.Single %
New PointF Y Coordinate

See Also