📄 segmentg.h
字号:
// A group for segment parameters.// 3-25-97, PeterM: Creation#ifndef __SEGMENT_H#define __SEGMENT_H#include "part1g.h"#include "ovector.h"class SegmentParams: public ParameterGroup{ protected: oopicList<LineSegment> LineSegmentList; // the points that make up this set of segments. oopicList<LineSegment> ReadLineSegmentList; // Line segments from the input file // previous is what is actually used to make boundaries. // these can be different. public: ScalarParameter A1,A2,B1,B2; IntParameter j1,j2,k1,k2; IntParameter normal; StringParameter SegName; virtual ostring InitializeFromStream(TXSTRSTD::ifstream &fin); oopicList<LineSegment> *GetLineSegments() { return &LineSegmentList; } oopicList<LineSegment> *GetReadLineSegments() { return &ReadLineSegmentList; } SegmentParams();};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -