blob: 437d2627b680f2f5ee8b34b47acae33b6c9b263c (
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
|
//--------------------------------------------------------------------
//
// File Name : IGESGeom_Point.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESGeom_Point.ixx>
#include <gp_GTrsf.hxx>
IGESGeom_Point::IGESGeom_Point () { }
void IGESGeom_Point::Init
(const gp_XYZ& aPoint,
const Handle(IGESBasic_SubfigureDef)& aSymbol)
{
thePoint = aPoint;
theSymbol = aSymbol;
InitTypeAndForm(116,0);
}
gp_Pnt IGESGeom_Point::Value () const
{
return gp_Pnt(thePoint);
}
gp_Pnt IGESGeom_Point::TransformedValue () const
{
gp_XYZ Val = thePoint;
if (HasTransf()) Location().Transforms(Val);
gp_Pnt transVal(Val);
return transVal;
}
Standard_Boolean IGESGeom_Point::HasDisplaySymbol () const
{
return (!theSymbol.IsNull());
}
Handle(IGESBasic_SubfigureDef) IGESGeom_Point::DisplaySymbol () const
{
return theSymbol;
}
|