TrigGetLineDistance(Single, Single, Single, Single, Single, Single) Method

Return the line distance between two points.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public static float GetLineDistance(
	float x1,
	float y1,
	float z1,
	float x2,
	float y2,
	float z2
)

Parameters

x1  Single
First point x coordinate.
y1  Single
First point y coordinate.
z1  Single
First point z coordinate.
x2  Single
Second point x coordinate.
y2  Single
Second point y coordinate.
z2  Single
Second point z coordinate.

Return Value

Single
Absolute distance between two points.

See Also