Creates an arc.

Namespace: Spherical
Assembly: SphericalLib (in SphericalLib.dll) Version: 1.0.5951.32246 (1.0.0.0)

Syntax

C#
public Arc(
	Halfspace circle,
	Cartesian p1,
	Cartesian p2
)
Visual C++
public:
Arc(
	Halfspace circle, 
	Cartesian p1, 
	Cartesian p2
)
F#
new : 
        circle:Halfspace * 
        p1:Cartesian * 
        p2:Cartesian -> Arc

Parameters

circle
Type: Spherical..::..Halfspace
The circle of the arc.
p1
Type: Spherical..::..Cartesian
The start point on the circle.
p2
Type: Spherical..::..Cartesian
The end point on the circle.

Remarks

The points are assumed to be on the circle, no checks performed.

See Also