You are here: Start » FIL.NET » Function Reference » Geometry 2D » Geometry 2D Constructions » FIL.CircleThroughPoints
Computes a circle passing through three noncollinear points.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void CircleThroughPoints ( FilNet.Point2D inPoint1, FilNet.Point2D inPoint2, FilNet.Point2D inPoint3, out FilNet.Circle2D? outCircle )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPoint1 | FilNet.Point2D | |||
![]() | inPoint2 | FilNet.Point2D | |||
![]() | inPoint3 | FilNet.Point2D | |||
![]() | outCircle | FilNet.Circle2D? | Circle passing through the specified points; or Nil if the points are collinear. |
Examples
![]() |
![]() |
CircleThroughPoints performed on three points.