0027961: Visualization - remove unused and no more working OpenGl_AVIWriter
[occt.git] / src / GeomFill / GeomFill_CornerState.hxx
CommitLineData
42cf5bc1 1// Created on: 1995-12-08
2// Created by: Laurent BOURESCHE
3// Copyright (c) 1995-1999 Matra Datavision
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 _GeomFill_CornerState_HeaderFile
18#define _GeomFill_CornerState_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_DefineAlloc.hxx>
22#include <Standard_Handle.hxx>
23
24#include <Standard_Real.hxx>
25#include <Standard_Boolean.hxx>
26
27
28//! Class (should be a structure) storing the
29//! informations about continuity, normals
30//! parallelism, coons conditions and bounds tangents
31//! angle on the corner of contour to be filled.
32class GeomFill_CornerState
33{
34public:
35
36 DEFINE_STANDARD_ALLOC
37
38
39 Standard_EXPORT GeomFill_CornerState();
40
41 Standard_EXPORT Standard_Real Gap() const;
42
43 Standard_EXPORT void Gap (const Standard_Real G);
44
45 Standard_EXPORT Standard_Real TgtAng() const;
46
47 Standard_EXPORT void TgtAng (const Standard_Real Ang);
48
49 Standard_EXPORT Standard_Boolean HasConstraint() const;
50
51 Standard_EXPORT void Constraint();
52
53 Standard_EXPORT Standard_Real NorAng() const;
54
55 Standard_EXPORT void NorAng (const Standard_Real Ang);
56
57 Standard_EXPORT Standard_Boolean IsToKill (Standard_Real& Scal) const;
58
59 Standard_EXPORT void DoKill (const Standard_Real Scal);
60
61
62
63
64protected:
65
66
67
68
69
70private:
71
72
73
74 Standard_Real gap;
75 Standard_Real tgtang;
76 Standard_Boolean isconstrained;
77 Standard_Real norang;
78 Standard_Real scal;
79 Standard_Boolean coonscnd;
80
81
82};
83
84
85
86
87
88
89
90#endif // _GeomFill_CornerState_HeaderFile