mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:46:30 +00:00
8 lines
206 B
C#
8 lines
206 B
C#
using System.Drawing;
|
|
|
|
namespace Azaion.Annotator.Extensions;
|
|
|
|
public static class RectangleFExtensions
|
|
{
|
|
public static double Area(this RectangleF rectangle) => rectangle.Width * rectangle.Height;
|
|
} |