AngleInPlaneConstraintGetAngleInPlane Method  | 
 
            Gets the angle formed by a projection of a vector into an axis-aligned plane.  The angle is measured from the
            first axis defining the plane toward the second axis defining the plane.
            
 
    Namespace: 
   AGI.Foundation.Access.Constraints
    Assembly:
   AGI.Foundation.Platforms (in AGI.Foundation.Platforms.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static double GetAngleInPlane(
	UnitCartesian vector,
	PlaneIndicator plane
)
Public Shared Function GetAngleInPlane ( 
	vector As UnitCartesian,
	plane As PlaneIndicator
) As Double
public:
static double GetAngleInPlane(
	UnitCartesian vector, 
	PlaneIndicator plane
)
static member GetAngleInPlane : 
        vector : UnitCartesian * 
        plane : PlaneIndicator -> float 
Parameters
- vector
 - Type: AGI.Foundation.CoordinatesUnitCartesian
The vector that is projected in the plane. - plane
 - Type: AGI.Foundation.Access.ConstraintsPlaneIndicator
The axis-aligned plane in which to project the vector. 
Return Value
Type: 
Double
            The angle from the first axis defining the plane to the projection of the vector into the plane.
            Positive is toward the second axis defining the plane.
            
See Also