mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-15 11:44:07 +03:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
145 lines
4.7 KiB
C++
145 lines
4.7 KiB
C++
// Created on: 1999-06-22
|
|
// Created by: Roman LYGIN
|
|
// Copyright (c) 1999-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.
|
|
|
|
// pdn 13.07.99 Derivatives are scaled in accordance with local/global parameter transition
|
|
|
|
#include <ShapeExtend_ComplexCurve.ixx>
|
|
#include <Precision.hxx>
|
|
|
|
//=======================================================================
|
|
//function : ShapeExtend_ComplexCurve
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
ShapeExtend_ComplexCurve::ShapeExtend_ComplexCurve()
|
|
{
|
|
myClosed = Standard_False;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Transform
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ShapeExtend_ComplexCurve::Transform(const gp_Trsf& T)
|
|
{
|
|
for (Standard_Integer i = 1; i <= NbCurves(); i++)
|
|
Curve(i)->Transform(T);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : D0
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ShapeExtend_ComplexCurve::D0(const Standard_Real U,gp_Pnt& P) const
|
|
{
|
|
Standard_Real UOut;
|
|
Standard_Integer ind = LocateParameter (U, UOut);
|
|
Curve(ind)->D0(UOut, P);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : D1
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ShapeExtend_ComplexCurve::D1(const Standard_Real U,gp_Pnt& P,gp_Vec& V1) const
|
|
{
|
|
Standard_Real UOut;
|
|
Standard_Integer ind = LocateParameter (U, UOut);
|
|
Curve(ind)->D1(UOut, P, V1);
|
|
TransformDN(V1,ind,1);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : D2
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ShapeExtend_ComplexCurve::D2(const Standard_Real U,gp_Pnt& P,gp_Vec& V1,gp_Vec& V2) const
|
|
{
|
|
Standard_Real UOut;
|
|
Standard_Integer ind = LocateParameter (U, UOut);
|
|
Curve(ind)->D2(UOut, P, V1, V2);
|
|
TransformDN(V1,ind,1);
|
|
TransformDN(V2,ind,2);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : D3
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ShapeExtend_ComplexCurve::D3(const Standard_Real U,gp_Pnt& P,gp_Vec& V1,gp_Vec& V2,gp_Vec& V3) const
|
|
{
|
|
Standard_Real UOut;
|
|
Standard_Integer ind = LocateParameter (U, UOut);
|
|
Curve(ind)->D3(UOut, P, V1, V2, V3);
|
|
TransformDN(V1,ind,1);
|
|
TransformDN(V2,ind,2);
|
|
TransformDN(V3,ind,3);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : DN
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
gp_Vec ShapeExtend_ComplexCurve::DN(const Standard_Real U,const Standard_Integer N) const
|
|
{
|
|
Standard_Real UOut;
|
|
Standard_Integer ind = LocateParameter (U, UOut);
|
|
gp_Vec res = Curve(ind)->DN(UOut, N);
|
|
if(N)
|
|
TransformDN(res,ind,N);
|
|
return res;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : CheckConnectivity
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean ShapeExtend_ComplexCurve::CheckConnectivity (const Standard_Real Preci)
|
|
{
|
|
Standard_Integer NbC = NbCurves();
|
|
Standard_Boolean ok = Standard_True;
|
|
for (Standard_Integer i = 1; i < NbC; i++ ) {
|
|
if (i == 1) myClosed = Value (FirstParameter()).IsEqual (Value (LastParameter()), Preci);
|
|
ok &= Curve (i)->Value (Curve(i)->LastParameter()).IsEqual
|
|
(Curve (i + 1)->Value (Curve(i + 1)->FirstParameter()), Preci);
|
|
}
|
|
#ifdef DEB
|
|
if (!ok) cout << "Warning: ShapeExtend_ComplexCurve: not connected in 3d" << endl;
|
|
#endif
|
|
return ok;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : TransformDN
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ShapeExtend_ComplexCurve::TransformDN (gp_Vec& V,
|
|
const Standard_Integer ind,
|
|
const Standard_Integer N) const
|
|
{
|
|
Standard_Real fact = GetScaleFactor(ind);
|
|
for(Standard_Integer i = 1; i <= N; i++)
|
|
V*= fact;
|
|
}
|