*createcirclecenterpoint
Creates a point at the center of a circle defined by 3 input points.
Syntax
*createcirclecenterpoint point_id1 point_id2 point_id3
Type
HyperMesh Tcl Modify Command
Description
Creates a point at the center of a circle defined by 3 input points.
Inputs
- point_id1
- The ID of the first point defining the circle.
- point_id2
- The ID of the second point defining the circle.
- point_id3
- The ID of the third point defining the circle.
Examples
To create a point at the center of the circle defined by points 100, 200 and
        300:
    *createcirclecenterpoint 100 200 300Errors
Incorrect usage results in a Tcl error. To detect
        errors, you can use the catch
        command:
    if { [ catch {command_name...} ] } {
   # Handle error
}