2005-12-05 21:23:52 +05:00
|
|
|
// Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
2008-03-07 12:45:34 +05:00
|
|
|
//
|
2005-12-05 21:23:52 +05:00
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
2008-03-07 12:45:34 +05:00
|
|
|
// License as published by the Free Software Foundation; either
|
2005-12-05 21:23:52 +05:00
|
|
|
// version 2.1 of the License.
|
2008-03-07 12:45:34 +05:00
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2005-12-05 21:23:52 +05:00
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
2008-03-07 12:45:34 +05:00
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
2005-12-05 21:23:52 +05:00
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
//
|
2006-06-01 17:32:40 +06:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2005-12-05 21:23:52 +05:00
|
|
|
//
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2008-03-07 12:45:34 +05:00
|
|
|
//#include <Standard_Stream.hxx>
|
2005-08-11 10:43:57 +06:00
|
|
|
|
|
|
|
#include <GEOMImpl_PositionDriver.hxx>
|
|
|
|
#include <GEOMImpl_IPosition.hxx>
|
|
|
|
#include <GEOMImpl_Types.hxx>
|
|
|
|
#include <GEOM_Function.hxx>
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2008-03-07 12:45:34 +05:00
|
|
|
#include <GEOMImpl_IMeasureOperations.hxx>
|
|
|
|
|
|
|
|
// OCCT Includes
|
2004-12-01 15:39:14 +05:00
|
|
|
#include <BRepBuilderAPI_Transform.hxx>
|
|
|
|
#include <BRep_Tool.hxx>
|
|
|
|
#include <TopoDS.hxx>
|
|
|
|
#include <TopoDS_Shape.hxx>
|
|
|
|
#include <TopoDS_Vertex.hxx>
|
|
|
|
#include <TopAbs.hxx>
|
|
|
|
#include <TopExp.hxx>
|
|
|
|
#include <gp_Pln.hxx>
|
|
|
|
#include <Geom_Plane.hxx>
|
|
|
|
#include <GProp_GProps.hxx>
|
|
|
|
#include <BRepGProp.hxx>
|
|
|
|
|
|
|
|
#include <Precision.hxx>
|
|
|
|
#include <gp_Pnt.hxx>
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : GetID
|
|
|
|
//purpose :
|
2008-03-07 12:45:34 +05:00
|
|
|
//=======================================================================
|
2004-12-01 15:39:14 +05:00
|
|
|
const Standard_GUID& GEOMImpl_PositionDriver::GetID()
|
|
|
|
{
|
|
|
|
static Standard_GUID aPositionDriver("FF1BBB69-5D14-4df2-980B-3A668264EA16");
|
2008-03-07 12:45:34 +05:00
|
|
|
return aPositionDriver;
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : GEOMImpl_PositionDriver
|
2008-03-07 12:45:34 +05:00
|
|
|
//purpose :
|
2004-12-01 15:39:14 +05:00
|
|
|
//=======================================================================
|
2008-03-07 12:45:34 +05:00
|
|
|
GEOMImpl_PositionDriver::GEOMImpl_PositionDriver()
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : Execute
|
|
|
|
//purpose :
|
2008-03-07 12:45:34 +05:00
|
|
|
//=======================================================================
|
2004-12-01 15:39:14 +05:00
|
|
|
Standard_Integer GEOMImpl_PositionDriver::Execute(TFunction_Logbook& log) const
|
|
|
|
{
|
2008-03-07 12:45:34 +05:00
|
|
|
if (Label().IsNull()) return 0;
|
2004-12-01 15:39:14 +05:00
|
|
|
Handle(GEOM_Function) aFunction = GEOM_Function::GetFunction(Label());
|
|
|
|
|
|
|
|
GEOMImpl_IPosition aCI (aFunction);
|
|
|
|
Standard_Integer aType = aFunction->GetType();
|
|
|
|
|
|
|
|
TopoDS_Shape aShape;
|
|
|
|
|
|
|
|
if (aType == POSITION_SHAPE || aType == POSITION_SHAPE_COPY) {
|
|
|
|
Handle(GEOM_Function) aRefShape = aCI.GetShape();
|
|
|
|
Handle(GEOM_Function) aRefStartLCS = aCI.GetStartLCS();
|
|
|
|
Handle(GEOM_Function) aRefEndLCS = aCI.GetEndLCS();
|
|
|
|
|
|
|
|
TopoDS_Shape aShapeBase = aRefShape->GetValue();
|
|
|
|
TopoDS_Shape aShapeStartLCS = aRefStartLCS->GetValue();
|
|
|
|
TopoDS_Shape aShapeEndLCS = aRefEndLCS->GetValue();
|
|
|
|
|
2008-03-07 12:45:34 +05:00
|
|
|
if (aShapeBase.IsNull() || aShapeStartLCS.IsNull() ||
|
2004-12-01 15:39:14 +05:00
|
|
|
aShapeEndLCS.IsNull() || aShapeEndLCS.ShapeType() != TopAbs_FACE)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
gp_Trsf aTrsf;
|
|
|
|
gp_Ax3 aStartAx3, aDestAx3;
|
|
|
|
|
2008-03-07 12:45:34 +05:00
|
|
|
// End LCS
|
|
|
|
aDestAx3 = GEOMImpl_IMeasureOperations::GetPosition(aShapeEndLCS);
|
|
|
|
|
|
|
|
// Start LCS
|
|
|
|
aStartAx3 = GEOMImpl_IMeasureOperations::GetPosition(aShapeStartLCS);
|
|
|
|
|
|
|
|
// Set transformation
|
|
|
|
aTrsf.SetDisplacement(aStartAx3, aDestAx3);
|
|
|
|
|
|
|
|
// Perform transformation
|
|
|
|
BRepBuilderAPI_Transform aBRepTrsf (aShapeBase, aTrsf, Standard_False);
|
|
|
|
aShape = aBRepTrsf.Shape();
|
|
|
|
}
|
|
|
|
else if (aType == POSITION_SHAPE_FROM_GLOBAL ||
|
|
|
|
aType == POSITION_SHAPE_FROM_GLOBAL_COPY) {
|
|
|
|
Handle(GEOM_Function) aRefShape = aCI.GetShape();
|
|
|
|
Handle(GEOM_Function) aRefEndLCS = aCI.GetEndLCS();
|
|
|
|
|
|
|
|
TopoDS_Shape aShapeBase = aRefShape->GetValue();
|
|
|
|
TopoDS_Shape aShapeEndLCS = aRefEndLCS->GetValue();
|
|
|
|
|
|
|
|
if (aShapeBase.IsNull() || aShapeEndLCS.IsNull() ||
|
|
|
|
aShapeEndLCS.ShapeType() != TopAbs_FACE)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
gp_Trsf aTrsf;
|
|
|
|
gp_Ax3 aStartAx3, aDestAx3;
|
|
|
|
|
|
|
|
// End LCS
|
|
|
|
aDestAx3 = GEOMImpl_IMeasureOperations::GetPosition(aShapeEndLCS);
|
|
|
|
|
|
|
|
// Set transformation
|
|
|
|
aTrsf.SetDisplacement(aStartAx3, aDestAx3);
|
|
|
|
|
|
|
|
// Perform transformation
|
2004-12-01 15:39:14 +05:00
|
|
|
BRepBuilderAPI_Transform aBRepTrsf (aShapeBase, aTrsf, Standard_False);
|
|
|
|
aShape = aBRepTrsf.Shape();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (aShape.IsNull()) return 0;
|
|
|
|
|
|
|
|
aFunction->SetValue(aShape);
|
|
|
|
|
2008-03-07 12:45:34 +05:00
|
|
|
log.SetTouched(Label());
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2008-03-07 12:45:34 +05:00
|
|
|
return 1;
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : GEOMImpl_PositionDriver_Type_
|
|
|
|
//purpose :
|
2008-03-07 12:45:34 +05:00
|
|
|
//=======================================================================
|
2004-12-01 15:39:14 +05:00
|
|
|
Standard_EXPORT Handle_Standard_Type& GEOMImpl_PositionDriver_Type_()
|
|
|
|
{
|
|
|
|
|
|
|
|
static Handle_Standard_Type aType1 = STANDARD_TYPE(TFunction_Driver);
|
|
|
|
if ( aType1.IsNull()) aType1 = STANDARD_TYPE(TFunction_Driver);
|
|
|
|
static Handle_Standard_Type aType2 = STANDARD_TYPE(MMgt_TShared);
|
2008-03-07 12:45:34 +05:00
|
|
|
if ( aType2.IsNull()) aType2 = STANDARD_TYPE(MMgt_TShared);
|
2004-12-01 15:39:14 +05:00
|
|
|
static Handle_Standard_Type aType3 = STANDARD_TYPE(Standard_Transient);
|
|
|
|
if ( aType3.IsNull()) aType3 = STANDARD_TYPE(Standard_Transient);
|
2008-03-07 12:45:34 +05:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
static Handle_Standard_Transient _Ancestors[]= {aType1,aType2,aType3,NULL};
|
|
|
|
static Handle_Standard_Type _aType = new Standard_Type("GEOMImpl_PositionDriver",
|
|
|
|
sizeof(GEOMImpl_PositionDriver),
|
|
|
|
1,
|
|
|
|
(Standard_Address)_Ancestors,
|
|
|
|
(Standard_Address)NULL);
|
|
|
|
|
|
|
|
return _aType;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : DownCast
|
|
|
|
//purpose :
|
2008-03-07 12:45:34 +05:00
|
|
|
//=======================================================================
|
2004-12-01 15:39:14 +05:00
|
|
|
const Handle(GEOMImpl_PositionDriver) Handle(GEOMImpl_PositionDriver)::DownCast(const Handle(Standard_Transient)& AnObject)
|
|
|
|
{
|
|
|
|
Handle(GEOMImpl_PositionDriver) _anOtherObject;
|
|
|
|
|
|
|
|
if (!AnObject.IsNull()) {
|
|
|
|
if (AnObject->IsKind(STANDARD_TYPE(GEOMImpl_PositionDriver))) {
|
|
|
|
_anOtherObject = Handle(GEOMImpl_PositionDriver)((Handle(GEOMImpl_PositionDriver)&)AnObject);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return _anOtherObject ;
|
|
|
|
}
|