CirclePlaneIntersection3D


Computes common points of a circle in 3D and a plane.

Syntax

C++
C#
Python
 
def CirclePlaneIntersection3D(
	inCircle3D: Circle3D,
	inPlane: Plane3D,
	/
)
-> (
	outIntersectionPoint1: Point3D | None,
	outIntersectionPoint2: Point3D | None
)

Parameters

Name Type Default Description
Input value inCircle3D Circle3D
Input value inPlane Plane3D
Output value outIntersectionPoint1 Point3D | None
Output value outIntersectionPoint2 Point3D | None