CreateCircle


Creates a circle from an aligned point and radius.

Syntax

C++
Python
 
def CreateCircle(
	inPoint: Point2D,
	inRadius: float,
	/,
	*,
	inPointAnchor: Anchor2D = Anchor2D.MiddleCenter
)
-> outCircle: Circle2D

Parameters

Name Type Range Default Description
Input value inPoint Point2D
Input value inPointAnchor Anchor2D Anchor2D.MiddleCenter Alignment of the point relatively to the box of the circle
Input value inRadius float 0.0 - Circle radius
Output value outCircle Circle2D