0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / XCAFView / XCAFView_Object.cxx
CommitLineData
2df785d7 1// Created on: 2016-10-20
2// Created by: Irina KRYLOVA
3// Copyright (c) 2016 OPEN CASCADE SAS
4//
5// This file is part of Open CASCADE Technology software library.
6//
7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
12//
13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
15
16#include <XCAFView_Object.hxx>
17
18IMPLEMENT_STANDARD_RTTIEXT(XCAFView_Object,Standard_Transient)
19
20//=======================================================================
21//function : XCAFView_Object
22//purpose :
23//=======================================================================
24XCAFView_Object::XCAFView_Object()
25{
0c63f2f8 26 myClippingExpression = new TCollection_HAsciiString();
2df785d7 27 myFrontPlaneClipping = Standard_False;
28 myBackPlaneClipping = Standard_False;
29 myViewVolumeSidesClipping = Standard_False;
0c63f2f8 30 myGDTPoints = NULL;
2df785d7 31}
32
33//=======================================================================
34//function : XCAFView_Object
35//purpose :
36//=======================================================================
37XCAFView_Object::XCAFView_Object(const Handle(XCAFView_Object)& theObj)
38{
2df785d7 39 myType = theObj->myType;
40 myProjectionPoint = theObj->myProjectionPoint;
41 myViewDirection = theObj->myViewDirection;
42 myUpDirection = theObj->myUpDirection;
43 myZoomFactor = theObj->myZoomFactor;
44 myWindowHorizontalSize = theObj->myWindowHorizontalSize;
45 myWindowVerticalSize = theObj->myWindowVerticalSize;
0c63f2f8 46 myClippingExpression = theObj->myClippingExpression;
2df785d7 47 myFrontPlaneClipping = theObj->myFrontPlaneClipping;
48 myFrontPlaneDistance = theObj->myFrontPlaneDistance;
49 myBackPlaneClipping = theObj->myBackPlaneClipping;
50 myBackPlaneDistance = theObj->myBackPlaneDistance;
51 myViewVolumeSidesClipping = theObj->myViewVolumeSidesClipping;
0c63f2f8 52 myGDTPoints = NULL;
2df785d7 53}
0c63f2f8 54