Добавьте файлы проекта.

This commit is contained in:
palex
2026-01-06 02:07:18 +03:00
parent 153b9675e3
commit 8e4b375e80
109 changed files with 10817 additions and 0 deletions

31
Geometry/BoundingBox2d.cs Normal file
View File

@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Geo
{
[Serializable]
public class BoundingBox2d
{
Point2d min;
Point2d max;
public Point2d Min { get => min; private set => min = value; }
public Point2d Max { get => max; private set => max = value; }
public BoundingBox2d()
{
min = new Point2d();
max = new Point2d();
}
public BoundingBox2d(Point2d minPt, Point2d maxPt)
{
min = minPt;
max = maxPt;
}
}
}