ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/reconstruction/src/sq_noeud.h
Revision: 1089
Committed: Sat Jan 29 20:29:33 2022 UTC (3 years, 4 months ago) by amroune
Content type: text/plain
File size: 603 byte(s)
Log Message:
Mise a jour de la derniere version du code

File Contents

# User Rev Content
1 amroune 999 #ifndef _SQ_NOEUD_
2     #define _SQ_NOEUD_
3    
4     #include "mg_noeud.h"
5    
6 amroune 1015
7 amroune 1002 class SQ_NOEUD: public MG_NOEUD
8 amroune 999 {
9     public:
10     SQ_NOEUD(unsigned long num,MG_ELEMENT_TOPOLOGIQUE* topo,double xx,double yy,double zz,int origine);
11     SQ_NOEUD(MG_ELEMENT_TOPOLOGIQUE* topo, double xx, double yy, double zz, int origine);
12     SQ_NOEUD(SQ_NOEUD& mdd);
13     virtual ~SQ_NOEUD();
14    
15     OT_VECTEUR_3D get_normal_section();
16 amroune 1002 OT_VECTEUR_3D get_dir();
17 amroune 999
18     void change_normal_section(OT_VECTEUR_3D norm);
19 amroune 1002 void change_dir(OT_VECTEUR_3D vec);
20 amroune 999
21     protected:
22     OT_VECTEUR_3D normal_section;
23 amroune 1002 OT_VECTEUR_3D dir;
24 amroune 999 };
25     #endif