0023024: Update headers of OCCT files
[occt.git] / src / IntRes2d / IntRes2d_Transition.cxx
CommitLineData
b311480e 1// Created on: 1992-06-10
2// Created by: Laurent BUCHARD
3// Copyright (c) 1992-1999 Matra Datavision
4// Copyright (c) 1999-2012 OPEN CASCADE SAS
5//
6// The content of this file is subject to the Open CASCADE Technology Public
7// License Version 6.5 (the "License"). You may not use the content of this file
8// except in compliance with the License. Please obtain a copy of the License
9// at http://www.opencascade.org and read it completely before using this file.
10//
11// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13//
14// The Original Code and all software distributed under the License is
15// distributed on an "AS IS" basis, without warranty of any kind, and the
16// Initial Developer hereby disclaims all such warranties, including without
17// limitation, any warranties of merchantability, fitness for a particular
18// purpose or non-infringement. Please see the License for the specific terms
19// and conditions governing the rights and limitations under the License.
20
7fd59977 21
22
23#include <IntRes2d_Transition.ixx>
24
25
26IntRes2d_Transition::IntRes2d_Transition() : tangent(Standard_True),
27 posit(IntRes2d_Middle),
28 typetra(IntRes2d_Undecided),
29 situat(IntRes2d_Unknown),
30 oppos(Standard_False)
31{
32}
33
34
35ostream& operator << (ostream& os, IntRes2d_Transition& Trans) {
36
37 os << " Position : ";
38 if (Trans.PositionOnCurve()==IntRes2d_Head) {
39 os << "Debut\n";
40 }
41 else if (Trans.PositionOnCurve()==IntRes2d_Middle) {
42 os << "Milieu\n";
43 }
44 else {
45 os << "Fin\n";
46 }
47
48 os << " Type de transition : ";
49 if (Trans.TransitionType()==IntRes2d_Undecided) {
50 os << "Indeterminee\n";
51 }
52 else {
53 if (Trans.TransitionType()==IntRes2d_In) {
54 os << "Entrante\n";
55 }
56 else if (Trans.TransitionType()==IntRes2d_Out) {
57 os << "Sortante\n";
58 }
59 else {
60 os << "Touch\n";
61 os << " Position par rapport a l'autre courbe : ";
62 if (Trans.Situation()==IntRes2d_Inside) {
63 os << "Interieure\n";
64 }
65 else if (Trans.Situation()==IntRes2d_Outside) {
66 os << "Exterieure\n";
67 }
68 else if (Trans.Situation()==IntRes2d_Unknown) {
69 os << "Indeterminee\n";
70 }
71 os << " Position matiere : ";
72 if (Trans.IsOpposite()) {
73 os << "Opposee\n";
74 }
75 else {
76 os << "Idem\n";
77 }
78 }
79 os << " Cas de tangence : ";
80 if (Trans.IsTangent()) {
81 os << "Oui\n";
82 }
83 else {
84 os << "Non\n";
85 }
86 }
87 os << "\n";
88 return os;
89}
90
91
92