arcCenter3Point()

Synopsis

Returns the center point of a circular arc which passes through three points . The points must not be collinear.

Syntax

ArcCenter3Point ( p1 As Point, _
                  p2 As Point, _
                  p3 As Point ) As Point 
Argument Type Description
p1 Point One of three points on arc
p2 Point One of three points on arc
p3 Point One of three points on arc

Example 1

Intent >arcCenter3Point(point(-1,-1,0), point(1,1,0), point(-1,1,0))
--> Point_(0.0, 0.0, 0.0, WorldFrame())