//=================================================================================================
GeomAlgoAPI_Pipe::GeomAlgoAPI_Pipe(const GeomShapePtr theBaseShape,
const GeomShapePtr thePathShape)
-: /*myIsPipeShellUsed(false),*/
- myBaseShape(theBaseShape),
- myPathShape(thePathShape)
{
build(theBaseShape, thePathShape);
}
GeomAlgoAPI_Pipe::GeomAlgoAPI_Pipe(const GeomShapePtr theBaseShape,
const GeomShapePtr thePathShape,
const GeomShapePtr theBiNormal)
-//: myIsPipeShellUsed(true)
{
build(theBaseShape, thePathShape, theBiNormal);
}
GeomAlgoAPI_Pipe::GeomAlgoAPI_Pipe(const ListOfShape& theBaseShapes,
const ListOfShape& theLocations,
const GeomShapePtr thePathShape)
-//: myIsPipeShellUsed(true)
{
build(theBaseShapes, theLocations, thePathShape);
}
}
return isDone == Standard_True;
-}
\ No newline at end of file
+}
void build(const ListOfShape& theBaseShapes,
const ListOfShape& theLocations,
const GeomShapePtr thePathShape);
-
-private:
- //bool myIsPipeShellUsed;
- GeomShapePtr myBaseShape;
- GeomShapePtr myPathShape;
};
#endif