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