0025192: Unification of LineConstructor algorithms used by GeomInt_IntSS and BOP
[occt.git] / src / IntTools / IntTools_LineConstructor.lxx
diff --git a/src/IntTools/IntTools_LineConstructor.lxx b/src/IntTools/IntTools_LineConstructor.lxx
deleted file mode 100644 (file)
index 4a57511..0000000
+++ /dev/null
@@ -1,82 +0,0 @@
-// Created on: 1995-02-07
-// Created by: Jacques GOUSSARD
-// Copyright (c) 1995-1999 Matra Datavision
-// Copyright (c) 1999-2014 OPEN CASCADE SAS
-//
-// This file is part of Open CASCADE Technology software library.
-//
-// This library is free software; you can redistribute it and/or modify it under
-// the terms of the GNU Lesser General Public License version 2.1 as published
-// by the Free Software Foundation, with special exception defined in the file
-// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
-// distribution for complete text of the license and disclaimer of any warranty.
-//
-// Alternatively, this file may be used under the terms of Open CASCADE
-// commercial license or contractual agreement.
-
-#include <StdFail_NotDone.hxx>
-
-//=======================================================================
-//function : GeomInt_LineConstructor
-//purpose  : 
-//=======================================================================
-
-inline IntTools_LineConstructor::IntTools_LineConstructor ()
- : done(Standard_False)
-{
-}
-
-
-//=======================================================================
-//function : Load
-//purpose  : 
-//=======================================================================
-
-inline void IntTools_LineConstructor::Load(const Handle(Adaptor3d_TopolTool)& D1,
-                                           const Handle(Adaptor3d_TopolTool)& D2,
-                                           const Handle(GeomAdaptor_HSurface)& S1,
-                                           const Handle(GeomAdaptor_HSurface)& S2)
-{
-  myDom1 = D1;
-  myDom2 = D2;
-  myHS1  = S1;
-  myHS2  = S2;
-}
-
-
-//=======================================================================
-//function : IsDone
-//purpose  : 
-//=======================================================================
-
-inline Standard_Boolean IntTools_LineConstructor::IsDone () const
-{
-  return done;
-}
-
-
-//=======================================================================
-//function : NbParts
-//purpose  : 
-//=======================================================================
-
-inline Standard_Integer IntTools_LineConstructor::NbParts () const
-{
-  if (!done) { StdFail_NotDone::Raise(); }
-  return (seqp.Length() / 2);
-}
-
-
-//=======================================================================
-//function : Part
-//purpose  : 
-//=======================================================================
-
-inline void IntTools_LineConstructor::Part (const Standard_Integer I,
-                                            Standard_Real& WFirst,
-                                            Standard_Real& WLast) const
-{
-  if (!done) { StdFail_NotDone::Raise(); }
-  WFirst = seqp(2*I-1);
-  WLast  = seqp(2*I);
-}