MathHelperBulgeArea Method
|
Returns the bulge area.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static double BulgeArea(
Vector2 u,
Vector2 v,
double bulge
)
Public Shared Function BulgeArea (
u As Vector2,
v As Vector2,
bulge As Double
) As Double
public:
static double BulgeArea(
Vector2 u,
Vector2 v,
double bulge
)
static member BulgeArea :
u : Vector2 *
v : Vector2 *
bulge : float -> float
STATIC METHOD BulgeArea(
u AS Vector2,
v AS Vector2,
bulge AS REAL8
) AS REAL8
Parameters
- u
- Type: DXFReaderNETVector2
Start point. - v
- Type: DXFReaderNETVector2
End point. - bulge
- Type: SystemDouble
The bulge is the tangent of one fourth the included angle for an arc segment, made negative if the arc goes clockwise from the start point to the endpoint. A bulge of 0 indicates a straight segment, and a bulge of 1 is a semicircle.
Return Value
Type:
DoubleBulge area in drawing units.
See Also