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(
	Plane plane
)
Visual Basic (Declaration)
Public Function Angle ( _
	plane As Plane _
) As Double
Visual C++
public:
double Angle(
	Plane^ plane
)

Parameters

plane
Type: ceometric.VectorGeometry..::.Plane
An intersecting Plane.

Return Value

The the smallest intersection angle with plane in [radian].

Remarks

If this is the acute or obtuse intersection angle depends on the orientation of the normal vectors of the two planes.

This angle is also called the dihedral angle.

If this angle is 0 or Math.PI, the planes are parallel and do not intersect.

See Also