|
15
|
1 |
/* |
|
|
2 |
* This file is part of the TraKERS\Middleware package. |
|
|
3 |
* |
|
|
4 |
* (c) IRI <http://www.iri.centrepompidou.fr/> |
|
|
5 |
* |
|
27
|
6 |
* For the full copyright and license information, please view the LICENSE |
|
15
|
7 |
* file that was distributed with this source code. |
|
|
8 |
*/ |
|
|
9 |
|
|
|
10 |
/* |
|
|
11 |
* Projet : TraKERS |
|
|
12 |
* Module : MIDDLEWARE |
|
|
13 |
* Sous-Module : Search |
|
|
14 |
* Classe : Constructor |
|
|
15 |
* |
|
|
16 |
* Auteur : alexandre.bastien@iri.centrepompidou.fr |
|
|
17 |
* |
|
|
18 |
* Fonctionnalités : Construit une structure au fur et à mesure que ses segments sont tracés. |
|
|
19 |
*/ |
|
|
20 |
|
|
|
21 |
using System; |
|
|
22 |
using System.Collections.Generic; |
|
|
23 |
using System.Linq; |
|
|
24 |
using System.Text; |
|
|
25 |
|
|
17
|
26 |
namespace Trakers.Tracking.Search |
|
15
|
27 |
{ |
|
|
28 |
public class Constructor |
|
|
29 |
{ |
|
|
30 |
/*public double Bernstein(int i, int k, double t) |
|
|
31 |
{ |
|
|
32 |
if(i == 0 && k == 0) |
|
|
33 |
return 1; |
|
|
34 |
|
|
|
35 |
}*/ |
|
|
36 |
|
|
|
37 |
} |
|
|
38 |
} |