geom/src/GEOM_I/GEOM_ICurvesOperations_i.cc

859 lines
27 KiB
C++
Raw Normal View History

2024-01-20 18:51:38 +05:00
// Copyright (C) 2007-2024 CEA, EDF, OPEN CASCADE
2005-12-05 21:23:52 +05:00
//
2012-08-09 13:58:02 +06:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
2005-12-05 21:23:52 +05:00
//
2012-08-09 13:58:02 +06:00
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
2014-02-18 12:44:41 +06:00
// version 2.1 of the License, or (at your option) any later version.
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06: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
// Lesser General Public License for more details.
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06: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
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2013-04-01 18:25:01 +06:00
//
2012-08-09 13:58:02 +06:00
2005-08-11 10:14:22 +06:00
#include <Standard_Stream.hxx>
2004-12-01 15:39:14 +05:00
#include "GEOM_ICurvesOperations_i.hh"
#include "utilities.h"
#include "OpUtil.hxx"
#include "GEOM_Engine.hxx"
#include "GEOM_Object.hxx"
#include <TColStd_HArray1OfByte.hxx>
#include <TColStd_HArray1OfReal.hxx>
2004-12-01 15:39:14 +05:00
//=============================================================================
/*!
* constructor:
*/
//=============================================================================
GEOM_ICurvesOperations_i::GEOM_ICurvesOperations_i (PortableServer::POA_ptr thePOA,
2012-08-09 13:58:02 +06:00
GEOM::GEOM_Gen_ptr theEngine,
::GEOMImpl_ICurvesOperations* theImpl)
2004-12-01 15:39:14 +05:00
:GEOM_IOperations_i(thePOA, theEngine, theImpl)
{
MESSAGE("GEOM_ICurvesOperations_i::GEOM_ICurvesOperations_i");
}
//=============================================================================
/*!
* destructor
*/
//=============================================================================
GEOM_ICurvesOperations_i::~GEOM_ICurvesOperations_i()
{
MESSAGE("GEOM_ICurvesOperations_i::~GEOM_ICurvesOperations_i");
}
//=============================================================================
/*!
* MakeCirclePntVecR
*/
//=============================================================================
2004-12-01 15:39:14 +05:00
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeCirclePntVecR
(GEOM::GEOM_Object_ptr thePnt, GEOM::GEOM_Object_ptr theVec,
2012-08-09 13:58:02 +06:00
CORBA::Double theR)
2004-12-01 15:39:14 +05:00
{
GEOM::GEOM_Object_var aGEOMObject;
//Set a not done flag
GetOperations()->SetNotDone();
2009-02-13 17:16:39 +05:00
// Not set thePnt means origin of global CS,
// Not set theVec means Z axis of global CS
//if (thePnt == NULL || theVec == NULL) return aGEOMObject._retn();
2004-12-01 15:39:14 +05:00
2009-02-13 17:16:39 +05:00
//Get the arguments
Handle(::GEOM_Object) aPnt, aVec;
2009-02-13 17:16:39 +05:00
if (!CORBA::is_nil(thePnt)) {
2012-08-09 13:58:02 +06:00
aPnt = GetObjectImpl(thePnt);
2009-02-13 17:16:39 +05:00
if (aPnt.IsNull()) return aGEOMObject._retn();
}
if (!CORBA::is_nil(theVec)) {
2012-08-09 13:58:02 +06:00
aVec = GetObjectImpl(theVec);
2009-02-13 17:16:39 +05:00
if (aVec.IsNull()) return aGEOMObject._retn();
}
2004-12-01 15:39:14 +05:00
// Make Circle
Handle(::GEOM_Object) anObject =
2004-12-01 15:39:14 +05:00
GetOperations()->MakeCirclePntVecR(aPnt, aVec, theR);
if (!GetOperations()->IsDone() || anObject.IsNull())
return aGEOMObject._retn();
return GetObject(anObject);
}
//=============================================================================
/*!
* MakeCircleThreePnt
*/
//=============================================================================
2004-12-01 15:39:14 +05:00
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeCircleThreePnt
(GEOM::GEOM_Object_ptr thePnt1, GEOM::GEOM_Object_ptr thePnt2,
2012-08-09 13:58:02 +06:00
GEOM::GEOM_Object_ptr thePnt3)
2004-12-01 15:39:14 +05:00
{
GEOM::GEOM_Object_var aGEOMObject;
//Set a not done flag
GetOperations()->SetNotDone();
//Get the reference points
Handle(::GEOM_Object) aPnt1 = GetObjectImpl(thePnt1);
Handle(::GEOM_Object) aPnt2 = GetObjectImpl(thePnt2);
Handle(::GEOM_Object) aPnt3 = GetObjectImpl(thePnt3);
2004-12-01 15:39:14 +05:00
if (aPnt1.IsNull() || aPnt2.IsNull() || aPnt3.IsNull()) return aGEOMObject._retn();
// Make Circle
Handle(::GEOM_Object) anObject =
2004-12-01 15:39:14 +05:00
GetOperations()->MakeCircleThreePnt(aPnt1, aPnt2, aPnt3);
if (!GetOperations()->IsDone() || anObject.IsNull())
return aGEOMObject._retn();
return GetObject(anObject);
}
//=============================================================================
/*!
* MakeCircleCenter2Pnt
*/
//=============================================================================
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeCircleCenter2Pnt
(GEOM::GEOM_Object_ptr thePnt1, GEOM::GEOM_Object_ptr thePnt2,
2012-08-09 13:58:02 +06:00
GEOM::GEOM_Object_ptr thePnt3)
{
GEOM::GEOM_Object_var aGEOMObject;
//Set a not done flag
GetOperations()->SetNotDone();
//Get the reference points
Handle(::GEOM_Object) aPnt1 = GetObjectImpl(thePnt1);
Handle(::GEOM_Object) aPnt2 = GetObjectImpl(thePnt2);
Handle(::GEOM_Object) aPnt3 = GetObjectImpl(thePnt3);
if (aPnt1.IsNull() || aPnt2.IsNull() || aPnt3.IsNull()) return aGEOMObject._retn();
// Make Circle
Handle(::GEOM_Object) anObject = GetOperations()->MakeCircleCenter2Pnt(aPnt1, aPnt2, aPnt3);
if (!GetOperations()->IsDone() || anObject.IsNull())
return aGEOMObject._retn();
return GetObject(anObject);
}
2004-12-01 15:39:14 +05:00
//=============================================================================
/*!
* MakeEllipse
*/
//=============================================================================
2004-12-01 15:39:14 +05:00
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeEllipse
(GEOM::GEOM_Object_ptr thePnt, GEOM::GEOM_Object_ptr theVec,
2012-08-09 13:58:02 +06:00
CORBA::Double theRMajor, double theRMinor)
2004-12-01 15:39:14 +05:00
{
GEOM::GEOM_Object_var aGEOMObject;
//Set a not done flag
GetOperations()->SetNotDone();
2009-02-13 17:16:39 +05:00
// Not set thePnt means origin of global CS,
// Not set theVec means Z axis of global CS
//if (thePnt == NULL || theVec == NULL) return aGEOMObject._retn();
2004-12-01 15:39:14 +05:00
2009-02-13 17:16:39 +05:00
//Get the arguments
Handle(::GEOM_Object) aPnt, aVec, aVecMaj;
2012-08-09 13:58:02 +06:00
if (!CORBA::is_nil(thePnt)) {
aPnt = GetObjectImpl(thePnt);
if (aPnt.IsNull()) return aGEOMObject._retn();
}
if (!CORBA::is_nil(theVec)) {
aVec = GetObjectImpl(theVec);
if (aVec.IsNull()) return aGEOMObject._retn();
}
// Make Ellipse
Handle(::GEOM_Object) anObject =
2012-08-09 13:58:02 +06:00
GetOperations()->MakeEllipse(aPnt, aVec, theRMajor, theRMinor, aVecMaj);
if (!GetOperations()->IsDone() || anObject.IsNull())
return aGEOMObject._retn();
return GetObject(anObject);
}
//=============================================================================
/*!
* MakeEllipseVec
*/
//=============================================================================
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeEllipseVec
(GEOM::GEOM_Object_ptr thePnt, GEOM::GEOM_Object_ptr theVec,
CORBA::Double theRMajor, double theRMinor,
GEOM::GEOM_Object_ptr theVecMaj)
{
GEOM::GEOM_Object_var aGEOMObject;
//Set a not done flag
GetOperations()->SetNotDone();
// Not set thePnt means origin of global CS,
// Not set theVec means Z axis of global CS
// Not set theVecMaj means X axis of global CS
//if (thePnt == NULL || theVec == NULL || theVecMaj == NULL) return aGEOMObject._retn();
//Get the arguments
Handle(::GEOM_Object) aPnt, aVec, aVecMaj;
2009-02-13 17:16:39 +05:00
if (!CORBA::is_nil(thePnt)) {
2012-08-09 13:58:02 +06:00
aPnt = GetObjectImpl(thePnt);
2009-02-13 17:16:39 +05:00
if (aPnt.IsNull()) return aGEOMObject._retn();
}
if (!CORBA::is_nil(theVec)) {
2012-08-09 13:58:02 +06:00
aVec = GetObjectImpl(theVec);
2009-02-13 17:16:39 +05:00
if (aVec.IsNull()) return aGEOMObject._retn();
}
2012-08-09 13:58:02 +06:00
if (!CORBA::is_nil(theVecMaj)) {
aVecMaj = GetObjectImpl(theVecMaj);
if (aVecMaj.IsNull()) return aGEOMObject._retn();
}
2004-12-01 15:39:14 +05:00
// Make Ellipse
Handle(::GEOM_Object) anObject =
2012-08-09 13:58:02 +06:00
GetOperations()->MakeEllipse(aPnt, aVec, theRMajor, theRMinor, aVecMaj);
2004-12-01 15:39:14 +05:00
if (!GetOperations()->IsDone() || anObject.IsNull())
return aGEOMObject._retn();
return GetObject(anObject);
}
//=============================================================================
/*!
* MakeArc
*/
//=============================================================================
2004-12-01 15:39:14 +05:00
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeArc
(GEOM::GEOM_Object_ptr thePnt1,
2012-08-09 13:58:02 +06:00
GEOM::GEOM_Object_ptr thePnt2,
GEOM::GEOM_Object_ptr thePnt3)
2004-12-01 15:39:14 +05:00
{
GEOM::GEOM_Object_var aGEOMObject;
//Set a not done flag
GetOperations()->SetNotDone();
//Get the reference points
Handle(::GEOM_Object) aPnt1 = GetObjectImpl(thePnt1);
Handle(::GEOM_Object) aPnt2 = GetObjectImpl(thePnt2);
Handle(::GEOM_Object) aPnt3 = GetObjectImpl(thePnt3);
2004-12-01 15:39:14 +05:00
if (aPnt1.IsNull() || aPnt2.IsNull() || aPnt3.IsNull()) return aGEOMObject._retn();
// Make Arc
Handle(::GEOM_Object) anObject =
2004-12-01 15:39:14 +05:00
GetOperations()->MakeArc(aPnt1, aPnt2, aPnt3);
if (!GetOperations()->IsDone() || anObject.IsNull())
return aGEOMObject._retn();
return GetObject(anObject);
}
//=============================================================================
/*!
* MakeArcCenter
*/
//=============================================================================
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeArcCenter
(GEOM::GEOM_Object_ptr thePnt1,
GEOM::GEOM_Object_ptr thePnt2,
GEOM::GEOM_Object_ptr thePnt3,
CORBA::Boolean theSense)
{
GEOM::GEOM_Object_var aGEOMObject;
//Set a not done flag
GetOperations()->SetNotDone();
//Get the reference points
Handle(::GEOM_Object) aPnt1 = GetObjectImpl(thePnt1);
Handle(::GEOM_Object) aPnt2 = GetObjectImpl(thePnt2);
Handle(::GEOM_Object) aPnt3 = GetObjectImpl(thePnt3);
if (aPnt1.IsNull() || aPnt2.IsNull() || aPnt3.IsNull()) return aGEOMObject._retn();
// Make ArcCenter
Handle(::GEOM_Object) anObject =
GetOperations()->MakeArcCenter(aPnt1, aPnt2, aPnt3,theSense);
if (!GetOperations()->IsDone() || anObject.IsNull())
return aGEOMObject._retn();
return GetObject(anObject);
}
2009-02-13 17:16:39 +05:00
//=============================================================================
/*!
* MakeArc
*/
//=============================================================================
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeArcOfEllipse
(GEOM::GEOM_Object_ptr thePnt1,
2012-08-09 13:58:02 +06:00
GEOM::GEOM_Object_ptr thePnt2,
GEOM::GEOM_Object_ptr thePnt3)
2009-02-13 17:16:39 +05:00
{
GEOM::GEOM_Object_var aGEOMObject;
//Set a not done flag
GetOperations()->SetNotDone();
//Get the reference points
Handle(::GEOM_Object) aPnt1 = GetObjectImpl(thePnt1);
Handle(::GEOM_Object) aPnt2 = GetObjectImpl(thePnt2);
Handle(::GEOM_Object) aPnt3 = GetObjectImpl(thePnt3);
2009-02-13 17:16:39 +05:00
if (aPnt1.IsNull() || aPnt2.IsNull() || aPnt3.IsNull()) return aGEOMObject._retn();
// Make Arc
Handle(::GEOM_Object) anObject =
2009-02-13 17:16:39 +05:00
GetOperations()->MakeArcOfEllipse(aPnt1, aPnt2, aPnt3);
if (!GetOperations()->IsDone() || anObject.IsNull())
return aGEOMObject._retn();
return GetObject(anObject);
}
2004-12-01 15:39:14 +05:00
//=============================================================================
/*!
* MakePolyline
*/
//=============================================================================
2004-12-01 15:39:14 +05:00
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakePolyline
2012-08-09 13:58:02 +06:00
(const GEOM::ListOfGO& thePoints,
CORBA::Boolean theIsClosed)
2004-12-01 15:39:14 +05:00
{
GEOM::GEOM_Object_var aGEOMObject;
//Set a not done flag
GetOperations()->SetNotDone();
//Get the reference point
int ind = 0;
int aLen = thePoints.length();
std::list<Handle(::GEOM_Object)> aPoints;
2004-12-01 15:39:14 +05:00
for (; ind < aLen; ind++) {
Handle(::GEOM_Object) aPnt = GetObjectImpl(thePoints[ind]);
2004-12-01 15:39:14 +05:00
if (aPnt.IsNull()) return aGEOMObject._retn();
aPoints.push_back(aPnt);
}
// Make Polyline
Handle(::GEOM_Object) anObject =
2012-08-09 13:58:02 +06:00
GetOperations()->MakePolyline(aPoints, theIsClosed);
2004-12-01 15:39:14 +05:00
if (!GetOperations()->IsDone() || anObject.IsNull())
return aGEOMObject._retn();
return GetObject(anObject);
}
//=============================================================================
/*!
* MakeSplineBezier
*/
//=============================================================================
2004-12-01 15:39:14 +05:00
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeSplineBezier
2012-08-09 13:58:02 +06:00
(const GEOM::ListOfGO& thePoints,
CORBA::Boolean theIsClosed)
2004-12-01 15:39:14 +05:00
{
GEOM::GEOM_Object_var aGEOMObject;
//Set a not done flag
GetOperations()->SetNotDone();
//Get the reference point
int ind = 0;
int aLen = thePoints.length();
std::list<Handle(::GEOM_Object)> aPoints;
2004-12-01 15:39:14 +05:00
for (; ind < aLen; ind++) {
Handle(::GEOM_Object) aPnt = GetObjectImpl(thePoints[ind]);
2004-12-01 15:39:14 +05:00
if (aPnt.IsNull()) return aGEOMObject._retn();
aPoints.push_back(aPnt);
}
// Make Bezier curve
Handle(::GEOM_Object) anObject =
2012-08-09 13:58:02 +06:00
GetOperations()->MakeSplineBezier(aPoints, theIsClosed);
2004-12-01 15:39:14 +05:00
if (!GetOperations()->IsDone() || anObject.IsNull())
return aGEOMObject._retn();
return GetObject(anObject);
}
//=============================================================================
/*!
* MakeSplineInterpolation
*/
//=============================================================================
2004-12-01 15:39:14 +05:00
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeSplineInterpolation
2012-08-09 13:58:02 +06:00
(const GEOM::ListOfGO& thePoints,
CORBA::Boolean theIsClosed,
CORBA::Boolean theDoReordering)
2004-12-01 15:39:14 +05:00
{
GEOM::GEOM_Object_var aGEOMObject;
//Set a not done flag
GetOperations()->SetNotDone();
//Get the reference point
int ind = 0;
int aLen = thePoints.length();
std::list<Handle(::GEOM_Object)> aPoints;
2004-12-01 15:39:14 +05:00
for (; ind < aLen; ind++) {
Handle(::GEOM_Object) aPnt = GetObjectImpl(thePoints[ind]);
2004-12-01 15:39:14 +05:00
if (aPnt.IsNull()) return aGEOMObject._retn();
aPoints.push_back(aPnt);
}
// Make Polyline
Handle(::GEOM_Object) anObject =
2012-08-09 13:58:02 +06:00
GetOperations()->MakeSplineInterpolation(aPoints, theIsClosed, theDoReordering);
2004-12-01 15:39:14 +05:00
if (!GetOperations()->IsDone() || anObject.IsNull())
return aGEOMObject._retn();
return GetObject(anObject);
}
2013-02-12 17:35:16 +06:00
//=============================================================================
/*!
* MakeSplineInterpolWithTangents
*/
//=============================================================================
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeSplineInterpolWithTangents
(const GEOM::ListOfGO& thePoints,
GEOM::GEOM_Object_ptr theFirstVec,
GEOM::GEOM_Object_ptr theLastVec)
{
GEOM::GEOM_Object_var aGEOMObject;
//Set a not done flag
GetOperations()->SetNotDone();
//Get the reference points
int ind = 0;
int aLen = thePoints.length();
std::list<Handle(::GEOM_Object)> aPoints;
2013-02-12 17:35:16 +06:00
for (; ind < aLen; ind++) {
Handle(::GEOM_Object) aPnt = GetObjectImpl(thePoints[ind]);
2013-02-12 17:35:16 +06:00
if (aPnt.IsNull()) return aGEOMObject._retn();
aPoints.push_back(aPnt);
}
//Get the reference vectors
Handle(::GEOM_Object) aVec1 = GetObjectImpl(theFirstVec);
Handle(::GEOM_Object) aVec2 = GetObjectImpl(theLastVec);
2013-02-12 17:35:16 +06:00
if (aVec1.IsNull() || aVec2.IsNull()) return aGEOMObject._retn();
// Make Polyline
Handle(::GEOM_Object) anObject =
2013-02-12 17:35:16 +06:00
GetOperations()->MakeSplineInterpolWithTangents(aPoints, aVec1, aVec2);
if (!GetOperations()->IsDone() || anObject.IsNull())
return aGEOMObject._retn();
return GetObject(anObject);
}
2012-08-09 13:58:02 +06:00
//=============================================================================
/*!
* MakeCurveParametric
*/
//=============================================================================
2012-10-08 17:16:36 +06:00
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeCurveParametric
(const char* thexExpr, const char* theyExpr, const char* thezExpr,
double theParamMin, double theParamMax, double theParamStep,
GEOM::curve_type theCurveType)
{
2012-08-09 13:58:02 +06:00
GEOM::GEOM_Object_var aGEOMObject;
//Set a not done flag
GetOperations()->SetNotDone();
2012-10-08 17:16:36 +06:00
2020-08-19 12:06:02 +05:00
GEOMImpl_ICurvesOperations::CurveType aType = GEOMImpl_ICurvesOperations::Polyline; // todo: aType must be explicitly initialized to avoid warning
2012-08-09 13:58:02 +06:00
switch(theCurveType) {
case GEOM::Polyline:
aType = GEOMImpl_ICurvesOperations::Polyline;
break;
case GEOM::Bezier:
aType = GEOMImpl_ICurvesOperations::Bezier;
break;
case GEOM::Interpolation:
aType = GEOMImpl_ICurvesOperations::Interpolation;
break;
default:
break;
2012-10-08 17:16:36 +06:00
}
2012-08-09 13:58:02 +06:00
// Make Polyline
Handle(::GEOM_Object) anObject =
2012-10-08 17:16:36 +06:00
GetOperations()->MakeCurveParametric(thexExpr, theyExpr, thezExpr,
theParamMin, theParamMax,
theParamStep, aType);
2012-08-09 13:58:02 +06:00
if (!GetOperations()->IsDone() || anObject.IsNull())
2012-10-08 17:16:36 +06:00
return aGEOMObject._retn();
2012-08-09 13:58:02 +06:00
return GetObject(anObject);
}
//=============================================================================
/*!
* MakeCurveParametricNew
*/
//=============================================================================
2012-10-08 17:16:36 +06:00
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeCurveParametricNew
(const char* thexExpr, const char* theyExpr, const char* thezExpr,
double theParamMin, double theParamMax, CORBA::Long theParamNbStep,
GEOM::curve_type theCurveType)
{
2012-08-09 13:58:02 +06:00
GEOM::GEOM_Object_var aGEOMObject;
//Set a not done flag
GetOperations()->SetNotDone();
2012-10-08 17:16:36 +06:00
2020-08-19 12:06:02 +05:00
GEOMImpl_ICurvesOperations::CurveType aType = GEOMImpl_ICurvesOperations::Polyline; // todo: aType must be explicitly initialized to avoid warning
2012-08-09 13:58:02 +06:00
switch(theCurveType) {
case GEOM::Polyline:
aType = GEOMImpl_ICurvesOperations::Polyline;
break;
case GEOM::Bezier:
aType = GEOMImpl_ICurvesOperations::Bezier;
break;
case GEOM::Interpolation:
aType = GEOMImpl_ICurvesOperations::Interpolation;
break;
default:
break;
2012-10-08 17:16:36 +06:00
}
2012-08-09 13:58:02 +06:00
// Make Polyline
Handle(::GEOM_Object) anObject =
2012-10-08 17:16:36 +06:00
GetOperations()->MakeCurveParametric(thexExpr, theyExpr, thezExpr,
theParamMin, theParamMax,
2012-08-09 13:58:02 +06:00
0.0, aType, theParamNbStep, true);
2012-10-08 17:16:36 +06:00
2012-08-09 13:58:02 +06:00
if (!GetOperations()->IsDone() || anObject.IsNull())
2012-10-08 17:16:36 +06:00
return aGEOMObject._retn();
2012-08-09 13:58:02 +06:00
return GetObject(anObject);
}
//=============================================================================
/*!
* MakeIsoline
*/
//=============================================================================
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeIsoline
(GEOM::GEOM_Object_ptr theFace,
CORBA::Boolean IsUIsoline,
double theParameter)
{
GEOM::GEOM_Object_var aGEOMObject;
//Set a not done flag
GetOperations()->SetNotDone();
Handle(::GEOM_Object) aFace = GetObjectImpl(theFace);
// Make isoline
Handle(::GEOM_Object) anObject =
GetOperations()->MakeIsoline(aFace, IsUIsoline, theParameter);
if (!GetOperations()->IsDone() || anObject.IsNull())
return aGEOMObject._retn();
return GetObject(anObject);
}
2004-12-01 15:39:14 +05:00
//=============================================================================
/*!
* MakeSketcher
*/
//=============================================================================
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeSketcher
(const char* theCommand, const GEOM::ListOfDouble& theWorkingPlane)
2004-12-01 15:39:14 +05:00
{
//Set a not done flag
GetOperations()->SetNotDone();
int ind = 0;
int aLen = theWorkingPlane.length();
2012-08-09 13:58:02 +06:00
std::list<double> aWorkingPlane;
2004-12-01 15:39:14 +05:00
for (; ind < aLen; ind++)
aWorkingPlane.push_back(theWorkingPlane[ind]);
// Make Sketcher
Handle(::GEOM_Object) anObject =
2009-02-13 17:16:39 +05:00
GetOperations()->MakeSketcher(theCommand, aWorkingPlane);
2004-12-01 15:39:14 +05:00
if (!GetOperations()->IsDone() || anObject.IsNull())
return GEOM::GEOM_Object::_nil();
2004-12-01 15:39:14 +05:00
return GetObject(anObject);
}
2009-02-13 17:16:39 +05:00
//=============================================================================
/*!
2012-10-08 17:16:36 +06:00
* MakeSketcherOnPlane
2009-02-13 17:16:39 +05:00
*/
//=============================================================================
2012-10-08 17:16:36 +06:00
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeSketcherOnPlane
(const char* theCommand, GEOM::GEOM_Object_ptr theWorkingPlane)
2009-02-13 17:16:39 +05:00
{
//Set a not done flag
GetOperations()->SetNotDone();
Handle(::GEOM_Object) aWorkingPlane = GetObjectImpl(theWorkingPlane);
2009-02-13 17:16:39 +05:00
// Make Sketcher
Handle(::GEOM_Object) anObject =
2012-10-08 17:16:36 +06:00
GetOperations()->MakeSketcherOnPlane(theCommand, aWorkingPlane);
2009-02-13 17:16:39 +05:00
if (!GetOperations()->IsDone() || anObject.IsNull())
return GEOM::GEOM_Object::_nil();
return GetObject(anObject);
}
//=============================================================================
/*!
2012-10-08 17:16:36 +06:00
* Make3DSketcherCommand
*/
//=============================================================================
2012-10-08 17:16:36 +06:00
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::Make3DSketcherCommand (const char* theCommand)
{
//Set a not done flag
GetOperations()->SetNotDone();
2012-10-08 17:16:36 +06:00
// Make 3D Sketcher
Handle(::GEOM_Object) anObject = GetOperations()->Make3DSketcherCommand(theCommand);
2012-10-08 17:16:36 +06:00
if (!GetOperations()->IsDone() || anObject.IsNull())
return GEOM::GEOM_Object::_nil();
return GetObject(anObject);
}
//=============================================================================
/*!
* Make3DSketcher
*/
//=============================================================================
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::Make3DSketcher
(const GEOM::ListOfDouble& theCoordinates)
{
//Set a not done flag
GetOperations()->SetNotDone();
int ind = 0;
int aLen = theCoordinates.length();
std::list<double> aCoords;
for (; ind < aLen; ind++)
aCoords.push_back(theCoordinates[ind]);
// Make Sketcher
Handle(::GEOM_Object) anObject =
2012-10-08 17:16:36 +06:00
GetOperations()->Make3DSketcher(aCoords);
if (!GetOperations()->IsDone() || anObject.IsNull())
return GEOM::GEOM_Object::_nil();
return GetObject(anObject);
}
//=============================================================================
/*!
* MakePolyline2D
*/
//=============================================================================
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakePolyline2D
(const GEOM::ListOfListOfDouble &theCoordsList,
const GEOM::string_array &theNamesList,
const GEOM::short_array &theTypesList,
const GEOM::ListOfBool &theClosedList,
const GEOM::ListOfDouble &theWorkingPlane)
{
//Set a not done flag
GetOperations()->SetNotDone();
// Convert input data
Handle(TColStd_HArray1OfExtendedString) aNames =
ConvertStringArray(theNamesList);
Handle(TColStd_HArray1OfByte) aTypes =
ConvertEnumArray(theTypesList);
Handle(TColStd_HArray1OfByte) aCloseds =
ConvertBoolArray(theClosedList);
std::list <std::list <double> > aCoords;
ConvertListListDouble(theCoordsList, aCoords);
Handle(TColStd_HArray1OfReal) aWorkingPlane;
const int n = theWorkingPlane.length();
int i;
if (n > 0) {
aWorkingPlane = new TColStd_HArray1OfReal(1, n);
for (i = 0; i < n; i++) {
aWorkingPlane->SetValue(i + 1, theWorkingPlane[i]);
}
}
// Make Polyline
Handle(::GEOM_Object) anObject = GetOperations()->MakePolyline2D
(aCoords, aNames, aTypes, aCloseds, aWorkingPlane);
if (!GetOperations()->IsDone() || anObject.IsNull()) {
return GEOM::GEOM_Object::_nil();
}
return GetObject(anObject);
}
//=============================================================================
/*!
* MakePolylineOnPlane
*/
//=============================================================================
GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakePolyline2DOnPlane
(const GEOM::ListOfListOfDouble &theCoordsList,
const GEOM::string_array &theNamesList,
const GEOM::short_array &theTypesList,
const GEOM::ListOfBool &theClosedList,
GEOM::GEOM_Object_ptr theWorkingPlane)
{
//Set a not done flag
GetOperations()->SetNotDone();
// Convert input data
Handle(TColStd_HArray1OfExtendedString) aNames =
ConvertStringArray(theNamesList);
Handle(TColStd_HArray1OfByte) aTypes =
ConvertEnumArray(theTypesList);
Handle(TColStd_HArray1OfByte) aCloseds =
ConvertBoolArray(theClosedList);
std::list <std::list <double> > aCoords;
Handle(::GEOM_Object) aWorkingPlane =
GetObjectImpl(theWorkingPlane);
ConvertListListDouble(theCoordsList, aCoords);
// Make Polyline
Handle(::GEOM_Object) anObject = GetOperations()->MakePolyline2DOnPlane
(aCoords, aNames, aTypes, aCloseds, aWorkingPlane);
if (!GetOperations()->IsDone() || anObject.IsNull()) {
return GEOM::GEOM_Object::_nil();
}
return GetObject(anObject);
}
//=============================================================================
/*!
* ConvertEnumArray
*/
//=============================================================================
Handle(TColStd_HArray1OfByte) GEOM_ICurvesOperations_i::ConvertEnumArray
(const GEOM::short_array &theInArray)
{
Handle(TColStd_HArray1OfByte) anOutArray;
const int n = theInArray.length();
int i;
if (n <= 0) {
return anOutArray;
}
anOutArray = new TColStd_HArray1OfByte(1, n);
for (i = 0; i < n; i++) {
bool isOK = true;
GEOMImpl_ICurvesOperations::CurveType aType;
switch(theInArray[i]) {
case GEOM::Polyline:
aType = GEOMImpl_ICurvesOperations::Polyline;
break;
case GEOM::Bezier:
aType = GEOMImpl_ICurvesOperations::Bezier;
break;
case GEOM::Interpolation:
aType = GEOMImpl_ICurvesOperations::Interpolation;
break;
default:
isOK = false;
break;
}
if (isOK) {
anOutArray->SetValue(i + 1, aType);
} else {
anOutArray.Nullify();
break;
}
}
return anOutArray;
}
//=============================================================================
/*!
* ConvertBoolArray
*/
//=============================================================================
Handle(TColStd_HArray1OfByte) GEOM_ICurvesOperations_i::ConvertBoolArray
(const GEOM::ListOfBool &theInArray)
{
Handle(TColStd_HArray1OfByte) anOutArray;
const int n = theInArray.length();
int i;
if (n <= 0) {
return anOutArray;
}
anOutArray = new TColStd_HArray1OfByte(1, n);
for (i = 0; i < n; i++) {
anOutArray->SetValue(i + 1, theInArray[i]);
}
return anOutArray;
}
//=============================================================================
/*!
* ConvertListListDouble
*/
//=============================================================================
void GEOM_ICurvesOperations_i::ConvertListListDouble
(const GEOM::ListOfListOfDouble &theInList,
std::list <std::list <double> > &theOutList)
{
const int n = theInList.length();
int i;
std::list <double> anEmptyList;
for (i = 0; i < n; i++) {
theOutList.push_back(anEmptyList);
const int m = theInList[i].length();
int j;
for (j = 0; j < m; j++) {
theOutList.back().push_back(theInList[i][j]);
}
}
}