blob: a3472f2d6a37cf5315640ee3f6fdee1ba4ed4706 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
//--------------------------------------------------------------------
//
// File Name : IGESDimen_Section.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESDimen_Section.ixx>
#include <Standard_DimensionMismatch.hxx>
#include <Standard_OutOfRange.hxx>
#include <IGESData_LineFontEntity.hxx>
#include <gp_GTrsf.hxx>
IGESDimen_Section::IGESDimen_Section () { }
void IGESDimen_Section::Init
(const Standard_Integer dataType, const Standard_Real aDisp,
const Handle(TColgp_HArray1OfXY)& dataPoints)
{
if (dataPoints->Lower() != 1)
Standard_DimensionMismatch::Raise("IGESDimen_Section : Init");
theDatatype = dataType;
theZDisplacement = aDisp;
theDataPoints = dataPoints;
InitTypeAndForm(106,FormNumber());
// FormNumber precises the type of Hatches (31-38)
}
void IGESDimen_Section::SetFormNumber (const Standard_Integer form)
{
if (form < 31 || form > 38) Standard_OutOfRange::Raise
("IGESDimen_Section : SetFormNumber");
InitTypeAndForm(106,form);
}
Standard_Integer IGESDimen_Section::Datatype () const
{
return theDatatype;
}
Standard_Integer IGESDimen_Section::NbPoints () const
{
return theDataPoints->Length();
}
Standard_Real IGESDimen_Section::ZDisplacement () const
{
return theZDisplacement;
}
gp_Pnt IGESDimen_Section::Point (const Standard_Integer Index) const
{
gp_XY tempXY = theDataPoints->Value(Index);
gp_Pnt point(tempXY.X(), tempXY.Y(), theZDisplacement);
return point;
}
gp_Pnt IGESDimen_Section::TransformedPoint (const Standard_Integer Index) const
{
gp_XY point2d = theDataPoints->Value(Index);
gp_XYZ point(point2d.X(), point2d.Y(), theZDisplacement);
if (HasTransf()) Location().Transforms(point);
return gp_Pnt(point);
}
|