Warning, /include/opencascade/HatchGen_Domain.lxx is written in an unsupported language. File is not indexed.
0001 // Created on: 1995-01-03
0002 // Created by: Laurent BUCHARD
0003 // Copyright (c) 1995-1999 Matra Datavision
0004 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0005 //
0006 // This file is part of Open CASCADE Technology software library.
0007 //
0008 // This library is free software; you can redistribute it and/or modify it under
0009 // the terms of the GNU Lesser General Public License version 2.1 as published
0010 // by the Free Software Foundation, with special exception defined in the file
0011 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0012 // distribution for complete text of the license and disclaimer of any warranty.
0013 //
0014 // Alternatively, this file may be used under the terms of Open CASCADE
0015 // commercial license or contractual agreement.
0016
0017 #include <Standard_DomainError.hxx>
0018
0019 //=======================================================================
0020 // Function : SetPoints
0021 // Purpose : Sets the first and the second points of the domain.
0022 //=======================================================================
0023
0024 inline void HatchGen_Domain::SetPoints (const HatchGen_PointOnHatching& P1,
0025 const HatchGen_PointOnHatching& P2)
0026 {
0027 myHasFirstPoint = Standard_True ;
0028 myFirstPoint = P1 ;
0029 myHasSecondPoint = Standard_True ;
0030 mySecondPoint = P2 ;
0031 }
0032
0033 //=======================================================================
0034 // Function : SetPoints
0035 // Purpose : Sets the first and the second points of the domain at the
0036 // infinite.
0037 //=======================================================================
0038
0039 inline void HatchGen_Domain::SetPoints ()
0040 {
0041 myHasFirstPoint = Standard_False ;
0042 myHasSecondPoint = Standard_False ;
0043 }
0044
0045 //=======================================================================
0046 // Function : SetFirstPoint
0047 // Purpose : Sets the first point of the domain.
0048 //=======================================================================
0049
0050 inline void HatchGen_Domain::SetFirstPoint (const HatchGen_PointOnHatching& P)
0051 {
0052 myHasFirstPoint = Standard_True ;
0053 myFirstPoint = P ;
0054 }
0055
0056 //=======================================================================
0057 // Function : SetFirstPoint
0058 // Purpose : Sets the first point of the domain at the infinite.
0059 //=======================================================================
0060
0061 inline void HatchGen_Domain::SetFirstPoint ()
0062 {
0063 myHasFirstPoint = Standard_False ;
0064 }
0065
0066 //=======================================================================
0067 // Function : SetSecondPoint
0068 // Purpose : Sets the second point of the domain.
0069 //=======================================================================
0070
0071 inline void HatchGen_Domain::SetSecondPoint (const HatchGen_PointOnHatching& P)
0072 {
0073 myHasSecondPoint = Standard_True ;
0074 mySecondPoint = P ;
0075 }
0076
0077 //=======================================================================
0078 // Function : SetSecondPoint
0079 // Purpose : Sets the second point of the domain at the infinite.
0080 //=======================================================================
0081
0082 inline void HatchGen_Domain::SetSecondPoint ()
0083 {
0084 myHasSecondPoint = Standard_False ;
0085 }
0086
0087 //=======================================================================
0088 // Function : HasFirstPoint
0089 // Purpose : Returns True if the domain has a first point.
0090 //=======================================================================
0091
0092 inline Standard_Boolean HatchGen_Domain::HasFirstPoint () const
0093 {
0094 return myHasFirstPoint ;
0095 }
0096
0097 //=======================================================================
0098 // Function : FirstPoint
0099 // Purpose : Returns the first point of the domain.
0100 //=======================================================================
0101
0102 inline const HatchGen_PointOnHatching& HatchGen_Domain::FirstPoint () const
0103 {
0104 Standard_DomainError_Raise_if (!myHasFirstPoint, "HatchGen_Domain::FirstPoint") ;
0105 return myFirstPoint ;
0106 }
0107
0108 //=======================================================================
0109 // Function : HasSecondPoint
0110 // Purpose : Returns True if the domain has a second point.
0111 //=======================================================================
0112
0113 inline Standard_Boolean HatchGen_Domain::HasSecondPoint () const
0114 {
0115 return myHasSecondPoint ;
0116 }
0117
0118 //=======================================================================
0119 // Function : SecondPoint
0120 // Purpose : Returns the second of the domain.
0121 //=======================================================================
0122
0123 inline const HatchGen_PointOnHatching& HatchGen_Domain::SecondPoint () const
0124 {
0125 Standard_DomainError_Raise_if (!myHasSecondPoint, "HatchGen_Domain::SecondPoint") ;
0126 return mySecondPoint ;
0127 }