Computes an intersection angle in [radian].

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

Syntax

C#
public double Angle(
	Line line
)
Visual Basic (Declaration)
Public Function Angle ( _
	line As Line _
) As Double
Visual C++
public:
double Angle(
	Line^ line
)

Parameters

line
Type: ceometric.VectorGeometry..::.Line
A line.

Return Value

Returns the intersection angle of the plane and line in [radian].

Remarks

If this is the acute or obtuse intersection angle depends on the orientation of the direction vector of the line and the normal vector of the plane.

If this angle is 0 or Math.PI, the line is parallel to the plane and does not intersect the plane.

See Also