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
78
79
80
81
82
83
84
85
86
87
|
// File Graphic3d_AspectMarker3d.cxx
// Created Fevrier 1992
// Author NW,JPB,CAL
//-Copyright MatraDatavision 1991,1992
//-Version
//-Design Declaration of variables specific to the context
// of trace of markers 3d
// Rappels Context of trace of markers 3d inherits the context
// defined by :
// - the color
// - the type of marker
// - the scale
//-Warning
//-References
//-Language C++ 2.0
//-Declarations
// for the class
#include <Graphic3d_AspectMarker3d.ixx>
#include <TColStd_Array1OfByte.hxx>
//-Aliases
//-Global data definitions
//-Constructors
//-Destructors
//-Methods, in order
Graphic3d_AspectMarker3d::Graphic3d_AspectMarker3d ()
:Aspect_AspectMarker(), MyTextureWidth(0), MyTextureHeight(0)
{
}
Graphic3d_AspectMarker3d::Graphic3d_AspectMarker3d (const Aspect_TypeOfMarker AType, const Quantity_Color& AColor, const Standard_Real AScaleOrId ):
Aspect_AspectMarker( AColor, AType, AScaleOrId ), MyTextureWidth(0), MyTextureHeight(0)
{
}
Graphic3d_AspectMarker3d::Graphic3d_AspectMarker3d (const Aspect_TypeOfMarker AType,
const Quantity_Color& AColor,
const Standard_Real AScaleOrId,
const Standard_Integer AWidth,
const Standard_Integer AHeight,
const Handle(TColStd_HArray1OfByte)& ATexture ):
Aspect_AspectMarker( AColor, AType, AScaleOrId ), MyTexture( ATexture ), MyTextureWidth(AWidth), MyTextureHeight(AHeight)
{
/*for( Standard_Integer aIndex = ATexture.Lower(); aIndex <= ATexture.Upper(); aIndex++ )
{
MyTexture.SetValue( aIndex, ATexture.Value( aIndex ) );
}
*/
}
void Graphic3d_AspectMarker3d::GetTextureSize(Standard_Integer& AWidth, Standard_Integer& AHeight)
{
AWidth = MyTextureWidth;
AHeight = MyTextureHeight;
}
const Handle(TColStd_HArray1OfByte)& Graphic3d_AspectMarker3d::GetTexture()
{
return MyTexture;
}
void Graphic3d_AspectMarker3d::SetTexture (const Standard_Integer AWidth,
const Standard_Integer AHeight,
const Handle(TColStd_HArray1OfByte)& ATexture )
{
MyTextureWidth = AWidth;
MyTextureHeight = AHeight;
MyTexture = ATexture;
}
|