MGCL V10  V10
MGCL V10
 全て クラス 名前空間 関数 変数 型定義 列挙型 列挙値 フレンド グループ ページ
igespd514.h
1 /********************************************************************/
2 /* Copyright (c) 2015 DG Technologies Inc. and Yuzi Mizuno */
3 /* All rights reserved. */
4 /********************************************************************/
5 #if !defined( __MGIGESPD514_H__)
6 #define __MGIGESPD514_H__
7 
8 #include <vector>
9 #include "mg/Position.h"
10 #include "mgiges/IgesPD.h"
11 
13 class MGIgesPD514: public MGIgesPD{
14 public:
16 
19 
22 
24  void push_back(
25  int face_DE,
26  bool same_direction=true
27  );
28 
30  void read_in(
31  char pDelimeter,
32  std::istringstream& pdstream
33  );
34 
42  const MGIgesGSec& gsec,
43  MGPvector<std::string>& plines
44  )const;
45 
48  std::vector<int> m_faces;
49  std::vector<bool> m_orientations;
50 };
53 
54 #endif // __MGIGESPD514_H__
void write_out_into_string(const MGIgesGSec &gsec, MGPvector< std::string > &plines) const
void read_in(char pDelimeter, std::istringstream &pdstream)
Read in parameter data from string stream data.
const MGIgesDirectoryEntry * DEpointer() const
Definition: igesPD.h:39
MGIgesDirectoryEntry describes a directory entry section of an IGES file.
Definition: IgesDirectoryEntry.h:20
~MGIgesPD514()
Destructor;.
Definition: igespd514.h:21
MGIgesPD is the parent class of all the Parameter data section type.
Definition: igesPD.h:17
MGIgesPD514(MGIgesDirectoryEntry *DEpointer=0)
Constructors.
void push_back(int face_DE, bool same_direction=true)
append a face.
MGIgesPD514 is the class for Iges parameter data type 514(Shell).
Definition: igespd514.h:13
MGIgesGSec describes a Global Section of a IGES file.
Definition: IgesGSec.h:18
std::vector< int > m_faces
vector of the face(IgesPD510) DE pointers.
Definition: igespd514.h:48
std::vector< bool > m_orientations
Definition: igespd514.h:49
Defines Vector of newed object pointers.
Definition: Pvector.h:27
bool m_is_closed
Member data. These are set as public.
Definition: igespd514.h:47