Vector3dAngleOnPlane Method
 | 
Returns the angle of this vector projected
onto the specified plane.
Namespace:  Teigha.Geometry
Assembly:  TD_Mgd (in TD_Mgd.dll) Version:
21.4.0.0
Syntax
 
public double AngleOnPlane(
        PlanarEntity plane
)
 
Public Function AngleOnPlane ( 
        plane As PlanarEntity
) As Double
 
public:
double AngleOnPlane(
        PlanarEntity^ plane
)
 
member AngleOnPlane : 
        plane : PlanarEntity -> float 
 
 
 
Parameters
- plane
 
- Type: Teigha.GeometryPlanarEntity
[in] Any 3D plane. 
Return Value
Type: 
Double
A new vector that is the result of this vector + the passed
vector.
 
Remarks
 
This vector is
projected orthogonally onto the plane through its origin and is
measured with respect to axis1 as returned by
plane.getCoordSystem(origin, axis1, axis2).
See Also