0024927: Getting rid of "Persistent" functionality -- Code
[occt.git] / src / PPoly / PPoly_Triangulation.cxx
diff --git a/src/PPoly/PPoly_Triangulation.cxx b/src/PPoly/PPoly_Triangulation.cxx
deleted file mode 100644 (file)
index 4d1b11d..0000000
+++ /dev/null
@@ -1,137 +0,0 @@
-// Copyright (c) 1998-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 <PPoly_Triangulation.ixx>
-
-//=======================================================================
-//function :
-//purpose  : 
-//=======================================================================
-
-
-PPoly_Triangulation::PPoly_Triangulation
-(const Standard_Real Defl,
- const Handle(PColgp_HArray1OfPnt)& Nodes,
- const Handle(PPoly_HArray1OfTriangle)& Triangles) :
- myDeflection(Defl),
- myNodes(Nodes),
- myTriangles(Triangles)
-{
-}
-
-
-//=======================================================================
-//function :
-//purpose  : 
-//=======================================================================
-
-PPoly_Triangulation::PPoly_Triangulation
-(const Standard_Real Defl,
- const Handle(PColgp_HArray1OfPnt)& Nodes, 
- const Handle(PColgp_HArray1OfPnt2d)& UVNodes, 
- const Handle(PPoly_HArray1OfTriangle)& Triangles) :
- myDeflection(Defl),
- myNodes(Nodes),
- myUVNodes(UVNodes),
- myTriangles(Triangles)
-{
-}
-
-
-//=======================================================================
-//function :
-//purpose  : 
-//=======================================================================
-
-Standard_Real PPoly_Triangulation::Deflection() const 
-{
-  return myDeflection;
-}
-
-
-//=======================================================================
-//function :
-//purpose  : 
-//=======================================================================
-
-void PPoly_Triangulation::Deflection(const Standard_Real Defl)
-{
-  myDeflection = Defl;
-}
-
-
-//=======================================================================
-//function :
-//purpose  : 
-//=======================================================================
-
-Standard_Integer PPoly_Triangulation::NbNodes() const 
-{
-  return myNodes->Length();
-}
-
-
-//=======================================================================
-//function :
-//purpose  : 
-//=======================================================================
-
-Standard_Integer PPoly_Triangulation::NbTriangles() const 
-{
-  return myTriangles->Length();
-}
-
-
-//=======================================================================
-//function :
-//purpose  : 
-//=======================================================================
-
-Standard_Boolean PPoly_Triangulation::HasUVNodes() const 
-{
-  return !myUVNodes.IsNull();
-}
-
-
-//=======================================================================
-//function :
-//purpose  : 
-//=======================================================================
-
-Handle(PColgp_HArray1OfPnt) PPoly_Triangulation::Nodes() const 
-{
-  return myNodes;
-}
-
-
-//=======================================================================
-//function :
-//purpose  : 
-//=======================================================================
-
-Handle(PColgp_HArray1OfPnt2d) PPoly_Triangulation::UVNodes() const 
-{
-  return myUVNodes;
-}
-
-
-//=======================================================================
-//function :
-//purpose  : 
-//=======================================================================
-
-Handle(PPoly_HArray1OfTriangle) PPoly_Triangulation::Triangles() const 
-{
-  return myTriangles;
-}