PointSegmentDistance

Namespace: JigLibX.Geometry
Assembly: JigLibX (in JigLibX.dll) Version: 0.3.1.0

Syntax

C#
public static void PointSegmentDistance(
	out float t,
	out float result,
	ref Vector3 pt,
	ref Segment seg
)
Visual Basic
Public Shared Sub PointSegmentDistance ( _
	<OutAttribute> ByRef t As Single, _
	<OutAttribute> ByRef result As Single, _
	ByRef pt As Vector3, _
	ByRef seg As Segment _
)
Visual C++
public:
static void PointSegmentDistance(
	[OutAttribute] float% t, 
	[OutAttribute] float% result, 
	Vector3% pt, 
	Segment% seg
)

Parameters

t
Type: System..::..Single%

[Missing <param name="t"/> documentation for "M:JigLibX.Geometry.Distance.PointSegmentDistance(System.Single@,System.Single@,Microsoft.Xna.Framework.Vector3@,JigLibX.Geometry.Segment@)"]

result
Type: System..::..Single%

[Missing <param name="result"/> documentation for "M:JigLibX.Geometry.Distance.PointSegmentDistance(System.Single@,System.Single@,Microsoft.Xna.Framework.Vector3@,JigLibX.Geometry.Segment@)"]

pt
Type: Vector3%

[Missing <param name="pt"/> documentation for "M:JigLibX.Geometry.Distance.PointSegmentDistance(System.Single@,System.Single@,Microsoft.Xna.Framework.Vector3@,JigLibX.Geometry.Segment@)"]

seg
Type: JigLibX.Geometry..::..Segment%

[Missing <param name="seg"/> documentation for "M:JigLibX.Geometry.Distance.PointSegmentDistance(System.Single@,System.Single@,Microsoft.Xna.Framework.Vector3@,JigLibX.Geometry.Segment@)"]

See Also