Table of Contents

Struct Circle

Namespace
Bonsai.Vision
Assembly
Bonsai.Vision.dll

Represents the parameters of a circle.

public struct Circle
Inherited Members

Constructors

Circle(Point2f, float)

Initializes a new instance of the Circle structure with the specified parameters.

public Circle(Point2f center, float radius)

Parameters

center Point2f

The center of the circle.

radius float

The radius of the circle.

Fields

Center

The center of the circle.

public Point2f Center

Field Value

Point2f

Radius

The radius of the circle.

public float Radius

Field Value

float

Methods

ToString()

Creates a string representation of this Circle structure.

public override string ToString()

Returns

string

A string containing all the parameter values of this Circle structure.