MAGiC  V5.0
Mailleurs Automatiques de Géometries intégrés à la Cao
stsurfrevolution.cpp
Aller à la documentation de ce fichier.
1 //####//------------------------------------------------------------
2 //####//------------------------------------------------------------
3 //####// MAGiC
4 //####// Jean Christophe Cuilliere et Vincent FRANCOIS
5 //####// Departement de Genie Mecanique - UQTR
6 //####//------------------------------------------------------------
7 //####// MAGIC est un projet de recherche de l equipe ERICCA
8 //####// du departement de genie mecanique de l Universite du Quebec a Trois Rivieres
9 //####// http://www.uqtr.ca/ericca
10 //####// http://www.uqtr.ca/
11 //####//------------------------------------------------------------
12 //####//------------------------------------------------------------
13 //####//
14 //####// stsurfrevolution.cpp
15 //####//
16 //####//------------------------------------------------------------
17 //####//------------------------------------------------------------
18 //####// COPYRIGHT 2000-2024
19 //####// jeu 13 jun 2024 11:53:59 EDT
20 //####//------------------------------------------------------------
21 //####//------------------------------------------------------------
22 
23 
24 
25 #include "stsurfrevolution.h"
26 #include "st_gestionnaire.h"
27 
28 
29 
30 
31 ST_SURFREVOLUTION::ST_SURFREVOLUTION(int LigneCourante,std::string idori,int courbe,int axis1_placement):ST_SURFACE(LigneCourante,idori), id_courbe(courbe),id_axis1_placement(axis1_placement)
32 {
33 }
34 
36 {
37  return id_courbe;
38 }
39 
40 
42 {
43  return id_axis1_placement;
44 }
45 
46 /*
47 
48 void ST_SURFREVOLUTION::est_util(ST_GESTIONNAIRE* gest)
49 {
50 util=true;
51 gest->lst_courbe.getid(id_courbe)->est_util(gest);
52 gest->lst_axis1placement.getid(id_axis1_placement)->est_util(gest);
53 } */
ST_SURFREVOLUTION::get_id_courbe
int get_id_courbe(void) const
Definition: stsurfrevolution.cpp:35
stsurfrevolution.h
st_gestionnaire.h
ST_SURFREVOLUTION::id_axis1_placement
int id_axis1_placement
Definition: stsurfrevolution.h:43
ST_SURFACE
Definition: st_surface.h:29
ST_SURFREVOLUTION::get_id_axis1_placement
int get_id_axis1_placement(void) const
Definition: stsurfrevolution.cpp:41
ST_SURFREVOLUTION::ST_SURFREVOLUTION
ST_SURFREVOLUTION(int LigneCourante, std::string idori, int courbe, int axis1_placement)
Definition: stsurfrevolution.cpp:31
ST_SURFREVOLUTION::id_courbe
int id_courbe
Definition: stsurfrevolution.h:42