middleware/src/Tracking/Search/Segment.cs
changeset 13 50de8e8f44d7
equal deleted inserted replaced
12:a446351f08c0 13:50de8e8f44d7
       
     1 /*
       
     2 * This file is part of the TraKERS\Middleware package.
       
     3 *
       
     4 * (c) IRI <http://www.iri.centrepompidou.fr/>
       
     5 *
       
     6 * For the full copyright and license information, please view the LICENSE_MIDDLEWARE
       
     7 * file that was distributed with this source code.
       
     8 */
       
     9 
       
    10 /*
       
    11  * Projet : TraKERS
       
    12  * Module : MIDDLEWARE
       
    13  * Sous-Module : Search
       
    14  * Classe : Segment
       
    15  * 
       
    16  * Auteur : alexandre.bastien@iri.centrepompidou.fr
       
    17  * 
       
    18  * Fonctionnalités : Définit un composant de structure de courbe.
       
    19  */
       
    20 
       
    21 using System;
       
    22 using System.Collections.Generic;
       
    23 using System.Linq;
       
    24 using System.Text;
       
    25 using System.Windows.Media.Media3D;
       
    26 
       
    27 namespace Trakers.Tracking.Search
       
    28 {
       
    29     public class Segment
       
    30     {
       
    31         //Points de la courbe réelle.
       
    32         private List<double> knots;
       
    33         //Points de contrôle.
       
    34         private List<Point3D> P;
       
    35     }
       
    36 }