0023510: Integration of test grid "vis" into the new testing system
[occt.git] / src / Prs2d / Prs2d_AspectHidingPoly.cxx
CommitLineData
b311480e 1// Copyright (c) 1999-2012 OPEN CASCADE SAS
2//
3// The content of this file is subject to the Open CASCADE Technology Public
4// License Version 6.5 (the "License"). You may not use the content of this file
5// except in compliance with the License. Please obtain a copy of the License
6// at http://www.opencascade.org and read it completely before using this file.
7//
8// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
9// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
10//
11// The Original Code and all software distributed under the License is
12// distributed on an "AS IS" basis, without warranty of any kind, and the
13// Initial Developer hereby disclaims all such warranties, including without
14// limitation, any warranties of merchantability, fitness for a particular
15// purpose or non-infringement. Please see the License for the specific terms
16// and conditions governing the rights and limitations under the License.
17
7fd59977 18#include <Prs2d_AspectHidingPoly.ixx>
19
20Prs2d_AspectHidingPoly::Prs2d_AspectHidingPoly
21 ( const Quantity_NameOfColor HidingColorInd,
22 const Quantity_NameOfColor FrameColorInd,
23 const Aspect_TypeOfLine FrameTypeInd,
24 const Aspect_WidthOfLine FrameWidthInd ):
25
26 Prs2d_AspectRoot( Prs2d_AN_HIDINGPOLY ),
27 myHidingColorInd( HidingColorInd ),
28 myFrameColorInd( FrameColorInd ),
29 myFrameTypeInd( FrameTypeInd ),
30 myFrameWidthInd( FrameWidthInd ) {
31}
32
33 void Prs2d_AspectHidingPoly::SetHidingColor( const Quantity_NameOfColor aColorInd ) {
34
35 myHidingColorInd = aColorInd;
36 }
37
38 void Prs2d_AspectHidingPoly::SetFrameColor( const Quantity_NameOfColor aFrameColorInd ) {
39
40 myFrameColorInd = aFrameColorInd;
41 }
42
43 void Prs2d_AspectHidingPoly::SetFrameType( const Aspect_TypeOfLine aFrameTypeInd ) {
44
45 myFrameTypeInd = aFrameTypeInd;
46 }
47
48 void Prs2d_AspectHidingPoly::SetFrameWidth( const Aspect_WidthOfLine aFrameWidthInd ) {
49
50 myFrameWidthInd = aFrameWidthInd;
51 }
52
53 void Prs2d_AspectHidingPoly::Values( Quantity_NameOfColor& HidingColorInd,
54 Quantity_NameOfColor& FrameColorInd,
55 Aspect_TypeOfLine & FrameTypeInd,
56 Aspect_WidthOfLine & FrameWidthInd ) const {
57 HidingColorInd = myHidingColorInd;
58 FrameColorInd = myFrameColorInd;
59 FrameTypeInd = myFrameTypeInd;
60 FrameWidthInd = myFrameWidthInd;
61 }
62
63