Calc.Bisect Method

Computes the bisector. In this case, computes the point between two 'leg' points that will split them with equal angles with respect to a tip.
Public Shared Function Bisect( _ 
ByVal tip As Point2d, _ 
ByVal leg1 As Point2d, _ 
ByVal leg2 As Point2d
) As Point2d
This language is not supported or no code example is available.
public static Point2d Bisect( 
Point2d tip
Point2d leg1
Point2d leg2 
)
This language is not supported or no code example is available.
public:  
static Point2d^ Bisect( 
Point2d^ tip
Point2d^ leg1
Point2d^ leg2 
)
This language is not supported or no code example is available.
public static function Bisect( 
tip : Point2d
leg1 : Point2d
leg2 : Point2d 
) : Point2d;
This language is not supported or no code example is available.

Parameters

tip
Point2d

leg1
Point2d

leg2
Point2d

Return Value

Point2d

A point between leg1 and leg 2.

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition