0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / IntCurveSurface / IntCurveSurface_IntersectionSegment.cxx
1 // Created on: 1993-04-07
2 // Created by: Laurent BUCHARD
3 // Copyright (c) 1993-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
18 #include <IntCurveSurface_IntersectionPoint.hxx>
19 #include <IntCurveSurface_IntersectionSegment.hxx>
20
21 IntCurveSurface_IntersectionSegment::IntCurveSurface_IntersectionSegment() 
22 { }
23 //================================================================================
24 IntCurveSurface_IntersectionSegment::IntCurveSurface_IntersectionSegment(const IntCurveSurface_IntersectionPoint& P1,
25                                                                          const IntCurveSurface_IntersectionPoint& P2):
26        myP1(P1),myP2(P2)
27
28
29 //================================================================================
30 void IntCurveSurface_IntersectionSegment::SetValues(const IntCurveSurface_IntersectionPoint& P1,
31                                                     const IntCurveSurface_IntersectionPoint& P2) { 
32   myP1 = P1; 
33   myP2 = P2;
34
35 //================================================================================
36 void IntCurveSurface_IntersectionSegment::Values(IntCurveSurface_IntersectionPoint& P1,
37                                                  IntCurveSurface_IntersectionPoint& P2) const
38
39   P1 = myP1; 
40   P2 = myP2;
41
42 //================================================================================
43 void IntCurveSurface_IntersectionSegment::FirstPoint(IntCurveSurface_IntersectionPoint& P1) const { 
44   P1 = myP1;
45 }
46 //================================================================================
47 void IntCurveSurface_IntersectionSegment::SecondPoint(IntCurveSurface_IntersectionPoint& P2) const { 
48   P2 = myP2;
49 }
50 //================================================================================
51 const IntCurveSurface_IntersectionPoint &
52   IntCurveSurface_IntersectionSegment::FirstPoint() const { 
53   return(myP1);
54 }
55 //================================================================================
56 const IntCurveSurface_IntersectionPoint &
57   IntCurveSurface_IntersectionSegment::SecondPoint() const { 
58   return(myP2);
59 }
60 //================================================================================
61 void IntCurveSurface_IntersectionSegment::Dump() const { 
62   std::cout<<"\nIntersectionSegment : "<<std::endl;
63   myP1.Dump();
64   myP2.Dump();
65   std::cout<<std::endl;
66 }
67