diff --git a/Bonsai.Vision/Bonsai.Vision.csproj b/Bonsai.Vision/Bonsai.Vision.csproj index e07a008e..b3c37b98 100644 --- a/Bonsai.Vision/Bonsai.Vision.csproj +++ b/Bonsai.Vision/Bonsai.Vision.csproj @@ -5,7 +5,7 @@ Bonsai Vision Library containing reactive algorithms for computer vision and image processing. Bonsai Rx Image Processing Computer Vision net462 - 2.8.0 + 2.8.1 diff --git a/Bonsai.Vision/Circle.cs b/Bonsai.Vision/Circle.cs index 75ab0138..10680042 100644 --- a/Bonsai.Vision/Circle.cs +++ b/Bonsai.Vision/Circle.cs @@ -19,6 +19,18 @@ public struct Circle /// public float Radius; + /// + /// Initializes a new instance of the structure with + /// the specified parameters. + /// + /// The center of the circle. + /// The radius of the circle. + public Circle(Point2f center, float radius) + { + Center = center; + Radius = radius; + } + /// /// Creates a representation of this /// structure.