MGCL V10  V10
MGCL V10
 全て クラス 名前空間 関数 変数 型定義 列挙型 列挙値 フレンド グループ ページ
igesPD100.h
1 /********************************************************************/
2 /* Copyright (c) 2015 DG Technologies Inc. and Yuzi Mizuno */
3 /* All rights reserved. */
4 /********************************************************************/
5 #if !defined( __MGIGESPD100_H__)
6 #define __MGIGESPD100_H__
7 
8 #include "mgiges/IgesPD.h"
9 
11 class MGIgesPD100: public MGIgesPD{
12 public:
13  // Constructors.
14 
17 
20  const double center[2],
21  const double start[2],
22  const double terminate[2],
23  double Z=0.
24  );
25 
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 
46 //Member data. These are set as public.
47  double m_Zt;
48  double m_center[2];
49  double m_start[2];
50  double m_terminate[2];
51 };
52 
53 #endif // __MGIGESPD100_H__
const MGIgesDirectoryEntry * DEpointer() const
Definition: igesPD.h:39
double m_Zt
Definition: igesPD100.h:47
double m_center[2]
(x1, y1) of the center.
Definition: igesPD100.h:48
MGIgesDirectoryEntry describes a directory entry section of an IGES file.
Definition: IgesDirectoryEntry.h:20
MGIgesPD100(MGIgesDirectoryEntry *DEpointer=0)
Constructs an object of class MGIgesPD100.
MGIgesPD is the parent class of all the Parameter data section type.
Definition: igesPD.h:17
double m_start[2]
(x2, y2) of the start point.
Definition: igesPD100.h:49
MGIgesGSec describes a Global Section of a IGES file.
Definition: IgesGSec.h:18
void write_out_into_string(const MGIgesGSec &gsec, MGPvector< std::string > &plines) const
~MGIgesPD100()
Destructor;.
Definition: igesPD100.h:27
MGIgesPD100 is the class for Iges parameter data type 100(circular arc).
Definition: igesPD100.h:11
void read_in(char pDelimeter, std::istringstream &pdstream)
Read in parameter data from string stream data.
double m_terminate[2]
(x2, y2) of the terminate point.
Definition: igesPD100.h:50
Defines Vector of newed object pointers.
Definition: Pvector.h:27