CircleShape constructor

__init__(self)

Construct a CircleShape profile with default radius(5).


def __init__(self):
    ...

__init__(self, radius)

Construct a CircleShape profile with specified radius.


def __init__(self, radius):
    ...
ParameterTypeDescription
radiusfloatRadius of the circle

See Also