blob: 2d52fd5b6c6ab06adeab4fc734c8cbb78911343c (
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
71
72
73
74
75
76
77
|
// Copyright: Matra-Datavision 1995
// File: GeomToIGES_GeomEntity.cxx
// Created: Wed Sep 13 14:29:47 1995
// Author: Marie Jose MARTZ
// <mjm>
//rln 06.01.98 new method SetUnit
#include <GeomToIGES_GeomEntity.ixx>
#include <IGESData_IGESModel.hxx>
//=======================================================================
//function : GeomToIGES_GeomEntity
//purpose :
//=======================================================================
GeomToIGES_GeomEntity::GeomToIGES_GeomEntity()
{
}
//=======================================================================
//function : GeomToIGES_GeomEntity
//purpose :
//=======================================================================
GeomToIGES_GeomEntity::GeomToIGES_GeomEntity
(const GeomToIGES_GeomEntity& other)
{
TheUnitFactor = other.GetUnit();
TheModel = other.GetModel();
}
//=======================================================================
//function : SetModel
//purpose :
//=======================================================================
void GeomToIGES_GeomEntity::SetModel(const Handle(IGESData_IGESModel)& model)
{
TheModel = model;
Standard_Real unitfactor = TheModel->GlobalSection().UnitValue();
TheUnitFactor = unitfactor;
}
//=======================================================================
//function : GetModel
//purpose :
//=======================================================================
Handle(IGESData_IGESModel) GeomToIGES_GeomEntity::GetModel() const
{
return TheModel;
}
//=======================================================================
//function : GetUnit
//purpose :
//=======================================================================
void GeomToIGES_GeomEntity::SetUnit(const Standard_Real unit)
{
TheUnitFactor = unit;
}
//=======================================================================
//function : GetUnit
//purpose :
//=======================================================================
Standard_Real GeomToIGES_GeomEntity::GetUnit() const
{
return TheUnitFactor;
}
|