You are here: Start » FIL.NET » Function Reference » Geometry 2D » Geometry 2D Relations » FIL.TestPointInCircle

FIL.TestPointInCircle

Tests whether a point lies inside a circle.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void TestPointInCircle
(
	FilNet.Point2D inPoint,
	FilNet.Circle2D inCircle,
	out bool outIsContained
)

Parameters

Name Type Range Default Description
inPointFilNet.Point2D
inCircleFilNet.Circle2D
outIsContainedbool

Examples

TestPointInCircle performed on the sample circle and point. outIsContained = True.


TestPointInCircle performed on the sample circle and point. outIsContained = False.

See also