Computes a point from trilinear triangle coordinates alpha:beta:gamma.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public Point GetPointFromTrilinearCoordinates(
	double alpha,
	double beta,
	double gamma
)
Visual Basic (Declaration)
Public Function GetPointFromTrilinearCoordinates ( _
	alpha As Double, _
	beta As Double, _
	gamma As Double _
) As Point
Visual C++
public:
Point^ GetPointFromTrilinearCoordinates(
	double alpha, 
	double beta, 
	double gamma
)

Parameters

alpha
Type: System..::.Double
The first trilinear coordinate.
beta
Type: System..::.Double
The second trilinear coordinate.
gamma
Type: System..::.Double
The third trilinear coordinate.

Return Value

Returns a point computed from trilinear triangle coordinates alpha:beta:gamma.

Exceptions

ExceptionCondition
System..::.ArithmeticExceptionInvalid trilinear coordinates. The sum of the trilinear coordinates must not be zero. The triangle may be degenerate (vertices are collinear or identical).

See Also