Warning, /include/opencascade/HLRBRep_CLPropsATool.lxx is written in an unsupported language. File is not indexed.
0001 // Created on: 1992-08-18
0002 // Created by: Herve LEGRAND
0003 // Copyright (c) 1992-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_NotImplemented.hxx>
0018 #include <HLRBRep_Curve.hxx>
0019 #include <GeomAbs_Shape.hxx>
0020
0021 //=======================================================================
0022 //function : Value
0023 //purpose :
0024 //=======================================================================
0025
0026 inline void HLRBRep_CLPropsATool::Value
0027 (const HLRBRep_Curve* A,
0028 const Standard_Real U,
0029 gp_Pnt2d& P)
0030 { P = A->Value(U); }
0031
0032 //=======================================================================
0033 //function : D1
0034 //purpose :
0035 //=======================================================================
0036
0037 inline void HLRBRep_CLPropsATool::D1
0038 (const HLRBRep_Curve* A,
0039 const Standard_Real U,
0040 gp_Pnt2d& P,
0041 gp_Vec2d& V1)
0042 { A->D1(U,P,V1); }
0043
0044 //=======================================================================
0045 //function : D2
0046 //purpose :
0047 //=======================================================================
0048
0049 inline void HLRBRep_CLPropsATool::D2
0050 (const HLRBRep_Curve* A,
0051 const Standard_Real U,
0052 gp_Pnt2d& P,
0053 gp_Vec2d& V1,
0054 gp_Vec2d& V2)
0055 { A->D2(U, P, V1, V2); }
0056
0057 //=======================================================================
0058 //function : D3
0059 //purpose :
0060 //=======================================================================
0061
0062 inline void HLRBRep_CLPropsATool::D3
0063 (const HLRBRep_Curve* A,
0064 const Standard_Real U,
0065 gp_Pnt2d& P,
0066 gp_Vec2d& V1,
0067 gp_Vec2d& V2,
0068 gp_Vec2d& V3)
0069 { A->D3(U, P, V1, V2, V3); }
0070
0071 //=======================================================================
0072 //function : Continuity
0073 //purpose :
0074 //=======================================================================
0075
0076 inline Standard_Integer HLRBRep_CLPropsATool::Continuity
0077 (const HLRBRep_Curve*)
0078 { return GeomAbs_C2; }
0079
0080 //=======================================================================
0081 //function : FirstParameter
0082 //purpose :
0083 //=======================================================================
0084
0085 inline Standard_Real HLRBRep_CLPropsATool::FirstParameter
0086 (const HLRBRep_Curve* A)
0087 { return A->FirstParameter(); }
0088
0089 //=======================================================================
0090 //function : LastParameter
0091 //purpose :
0092 //=======================================================================
0093
0094 inline Standard_Real HLRBRep_CLPropsATool::LastParameter
0095 (const HLRBRep_Curve* A)
0096 { return A->LastParameter(); }