Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / API_Bilat_Graph2D / INC / model / LineV.h
1 #ifndef LINEV_H_
2 #define LINEV_H_
3
4 #include "Segment.h"
5
6 /*----------------------------------------------------------------------*\
7 |* Declaration *|
8 \*---------------------------------------------------------------------*/
9
10 /*--------------------------------------*\
11 |* Public *|
12 \*-------------------------------------*/
13
14 class CBI_GRAPH LineV: public Segment
15 {
16 public:
17 /**
18 * Create a vertical segment from coordinates A=(x, y1), B=(x, y2)
19 */
20 LineV(Title title, Apparance apparance, float x, float y1, float y2);
21
22 void setX(float x);
23 void setY(float y1,float y2);
24
25 virtual ~LineV();
26 };
27
28 #endif
29
30 /*----------------------------------------------------------------------*\
31 |* End *|
32 \*---------------------------------------------------------------------*/