-
Notifications
You must be signed in to change notification settings - Fork 1
/
frames.cs
65 lines (59 loc) · 1.81 KB
/
frames.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace xml_valid
{
class frames
{
//Массив границ
private int[,] frame= new int[0,2];
//Добавляем две границы
public void addFrame(int start, int end)
{
Resize(ref frame, frame.GetLength(0) + 1, 2);
frame[frame.GetLength(0) - 1, 0] = start;
frame[frame.GetLength(0) - 1, 1] = end;
}
//Добавляем одну границу
public void addFrame(int line)
{
Resize(ref frame, frame.GetLength(0) + 1, 2);
frame[frame.GetLength(0) - 1, 0] = line;
frame[frame.GetLength(0) - 1, 1] = line;
}
//Проверка нахождения в границах
public bool isInFrames(int th)
{
for (int i = 0; i < frame.GetLength(0); i++)
{
if (frame[i,0] <= th && frame[i,1] >= th) return true;
}
return false;
}
//Очистка границ
public void clear()
{
Resize(ref frame, 0, 2);
}
//Изменение размера двумерного массива
private void Resize<T>(ref T[,] arr, int a, int b)
{
T[,] tmp = new T[a, b];
int с = arr.GetLength(0);
int d = arr.GetLength(1);
for (int i = 0; i < a; i++)
{
for (int j = 0; j < b; j++)
{
if (i < с && j < d)
tmp[i, j] = arr[i, j];
else
tmp[i, j] = default(T);
}
}
arr = tmp;
}
}
}