0030686: Visualization, SelectMgr_ViewerSelector - sorting issues of transformation...
[occt.git] / src / HLRAppli / HLRAppli_ReflectLines.hxx
CommitLineData
42cf5bc1 1// File: HLRAppli_ReflectLines.cdl
2// Created: 05.12.12 15:53:35
3// Created by: Julia GERASIMOVA
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
17#ifndef _HLRAppli_ReflectLines_HeaderFile
18#define _HLRAppli_ReflectLines_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_DefineAlloc.hxx>
22#include <Standard_Handle.hxx>
23
24#include <HLRAlgo_Projector.hxx>
601b1c8d 25#include <HLRBRep_Algo.hxx>
26#include <HLRBRep_TypeOfResultingEdge.hxx>
42cf5bc1 27#include <TopoDS_Shape.hxx>
28#include <Standard_Real.hxx>
29class TopoDS_Shape;
30
31
32//! This class builds reflect lines on a shape
33//! according to the axes of view defined by user.
34//! Reflect lines are represented by edges in 3d.
35class HLRAppli_ReflectLines
36{
37public:
38
39 DEFINE_STANDARD_ALLOC
40
41
42 //! Constructor
43 Standard_EXPORT HLRAppli_ReflectLines(const TopoDS_Shape& aShape);
44
45 //! Sets the normal to the plane of visualisation,
46 //! the coordinates of the view point and
47 //! the coordinates of the vertical direction vector.
48 Standard_EXPORT void SetAxes (const Standard_Real Nx, const Standard_Real Ny, const Standard_Real Nz, const Standard_Real XAt, const Standard_Real YAt, const Standard_Real ZAt, const Standard_Real XUp, const Standard_Real YUp, const Standard_Real ZUp);
49
50 Standard_EXPORT void Perform();
51
52 //! returns resulting compound of reflect lines
53 //! represented by edges in 3d
e7b01db7 54 Standard_EXPORT TopoDS_Shape GetResult() const;
42cf5bc1 55
601b1c8d 56 //! returns resulting compound of lines
57 //! of specified type and visibility
5ae6e53d 58 //! represented by edges in 3d or 2d
601b1c8d 59 Standard_EXPORT TopoDS_Shape GetCompoundOf3dEdges(const HLRBRep_TypeOfResultingEdge type,
5ae6e53d 60 const Standard_Boolean visible,
e7b01db7 61 const Standard_Boolean In3d) const;
42cf5bc1 62
63
64
65protected:
66
67
68
69
70
71private:
72
73
74
75 HLRAlgo_Projector myProjector;
601b1c8d 76 Handle(HLRBRep_Algo) myHLRAlgo;
42cf5bc1 77 TopoDS_Shape myShape;
601b1c8d 78 //TopoDS_Shape myCompound;
42cf5bc1 79
80
81};
82
83
84
85
86
87
88
89#endif // _HLRAppli_ReflectLines_HeaderFile