blob: 5ada0dc9d4810b1152f396bc7cc03629f6b64fe7 (
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
|
//--------------------------------------------------------------------
//
// File Name : IGESSolid_SolidOfLinearExtrusion.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESSolid_SolidOfLinearExtrusion.ixx>
#include <gp_GTrsf.hxx>
IGESSolid_SolidOfLinearExtrusion::IGESSolid_SolidOfLinearExtrusion () { }
void IGESSolid_SolidOfLinearExtrusion::Init
(const Handle(IGESData_IGESEntity)& aCurve,
const Standard_Real Length, const gp_XYZ& Direction)
{
theCurve = aCurve;
theLength = Length;
theDirection = Direction; // default (0,0,1)
InitTypeAndForm(164,0);
}
Handle(IGESData_IGESEntity) IGESSolid_SolidOfLinearExtrusion::Curve () const
{
return theCurve;
}
Standard_Real IGESSolid_SolidOfLinearExtrusion::ExtrusionLength () const
{
return theLength;
}
gp_Dir IGESSolid_SolidOfLinearExtrusion::ExtrusionDirection () const
{
return gp_Dir(theDirection);
}
gp_Dir IGESSolid_SolidOfLinearExtrusion::TransformedExtrusionDirection () const
{
if (!HasTransf()) return gp_Dir(theDirection);
else
{
gp_XYZ tmp = theDirection;
gp_GTrsf loc = Location();
loc.SetTranslationPart(gp_XYZ(0.,0.,0.));
loc.Transforms(tmp);
return gp_Dir(tmp);
}
}
|