CircleThroughPoints3D
Computes a circle in 3D passing through three noncollinear 3D points.
Syntax
C++
C#
Python
def CircleThroughPoints3D( inPoint1: Point3D, inPoint2: Point3D, inPoint3: Point3D, / ) -> outCircle3D: Circle3D | None
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPoint1 | Point3D | ||
![]() |
inPoint2 | Point3D | ||
![]() |
inPoint3 | Point3D | ||
![]() |
outCircle3D | Circle3D | None | Circle in 3D passing through the specified 3D points; or Nil if the points are collinear |


