MGCL V10  V10
MGCL V10
 全て クラス 名前空間 関数 変数 型定義 列挙型 列挙値 フレンド グループ ページ
igespd144.h
1 /********************************************************************/
2 /* Copyright (c) 2015 DG Technologies Inc. and Yuzi Mizuno */
3 /* All rights reserved. */
4 /********************************************************************/
5 #if !defined( __MGIGESPD144_H__)
6 #define __MGIGESPD144_H__
7 
8 #include <vector>
9 #include "mgiges/IgesPD.h"
10 
12 class MGIgesPD144: public MGIgesPD{
13 public:
14  // Constructors.
15 
18 
21  int surfaceDE,
22  int outerboundaryDE
23  );
24 
27 
29  void read_in(
30  char pDelimeter,
31  std::istringstream& pdstream
32  );
33 
34  void append_inner_boundary(int inner_boundaryDE){
35  m_inner_boundaries.push_back(inner_boundaryDE);
36  };
37 
45  const MGIgesGSec& gsec,
46  MGPvector<std::string>& plines
47  )const;
48 
49 public:
50 //Member data.
51 
57  std::vector<int> m_inner_boundaries;
58 };
59 
60 #endif // __MGIGESPD144_H__
MGIgesPD144(MGIgesDirectoryEntry *DEpointer=0)
Constructs an object of class MGIgesPD144.
int m_surface_DE
Directory entry of the untrimmed(base) surface.
Definition: igespd144.h:52
std::vector< int > m_inner_boundaries
vector of directory entry of the inner boundary entities.
Definition: igespd144.h:57
const MGIgesDirectoryEntry * DEpointer() const
Definition: igesPD.h:39
MGIgesPD144 is the class for Iges parameter data type 144(Trimmed Surface).
Definition: igespd144.h:12
void read_in(char pDelimeter, std::istringstream &pdstream)
Read in parameter data from string stream data.
MGIgesDirectoryEntry describes a directory entry section of an IGES file.
Definition: IgesDirectoryEntry.h:20
void write_out_into_string(const MGIgesGSec &gsec, MGPvector< std::string > &plines) const
MGIgesPD is the parent class of all the Parameter data section type.
Definition: igesPD.h:17
MGIgesGSec describes a Global Section of a IGES file.
Definition: IgesGSec.h:18
~MGIgesPD144()
Destructor;.
Definition: igespd144.h:26
int m_outer_boundary_type
Definition: igespd144.h:53
Defines Vector of newed object pointers.
Definition: Pvector.h:27
int m_outer_boudary_DE
outer boundary DE of the parametric space curve.
Definition: igespd144.h:56
void append_inner_boundary(int inner_boundaryDE)
Definition: igespd144.h:34