Click or drag to resize

Math3DGetDistancePointToPlane Method

Gets the distance of a point a to a plane defined by a point p and a normal vector q. The distance is considered to be positive if the point a is located in the half space into which the vector q is pointing.

Namespace: Altaxo.Geometry
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double GetDistancePointToPlane(
	PointD3D a,
	PointD3D p,
	VectorD3D q
)

Parameters

a  PointD3D
The point a.
p  PointD3D
A point on a plane.
q  VectorD3D
The normal vector of that plane (can be not-normalized).

Return Value

Double

[Missing <returns> documentation for "M:Altaxo.Geometry.Math3D.GetDistancePointToPlane(Altaxo.Geometry.PointD3D,Altaxo.Geometry.PointD3D,Altaxo.Geometry.VectorD3D)"]

See Also