}
// Axes
gp_Ax2 anAxes (aP, aV);
+ // Radius
+ double anR = aCI.GetRadius();
+ char aMsg[] = "Circle creation aborted: radius value less than 1e-07 is not acceptable";
+ if (anR < Precision::Confusion())
+ Standard_ConstructionError::Raise(aMsg);
// Circle
- gp_Circ aCirc (anAxes, aCI.GetRadius());
+ gp_Circ aCirc (anAxes, anR);
aShape = BRepBuilderAPI_MakeEdge(aCirc).Edge();
}
else if (aType == CIRCLE_CENTER_TWO_PNT) {
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
-//
+
#include <Standard_Stream.hxx>
#include <GEOMImpl_SphereDriver.hxx>
TopoDS_Shape aShape;
+ char aMsg[] = "Sphere creation aborted: radius value less than 1e-07 is not acceptable";
+
if (aType == SPHERE_R) {
- aShape = BRepPrimAPI_MakeSphere(aCI.GetR()).Shape();
+ double anR = aCI.GetR();
+ if (anR < Precision::Confusion())
+ Standard_ConstructionError::Raise(aMsg);
+
+ aShape = BRepPrimAPI_MakeSphere(anR).Shape();
}
else if (aType == SPHERE_PNT_R) {
+ double anR = aCI.GetR();
+ if (anR < Precision::Confusion())
+ Standard_ConstructionError::Raise(aMsg);
+
Handle(GEOM_Function) aRefPoint = aCI.GetPoint();
TopoDS_Shape aShapePnt = aRefPoint->GetValue();
- if (aShapePnt.ShapeType() == TopAbs_VERTEX) {
- gp_Pnt aP = BRep_Tool::Pnt(TopoDS::Vertex(aShapePnt));
- aShape = BRepPrimAPI_MakeSphere(aP, aCI.GetR()).Shape();
- }
+ if (aShapePnt.ShapeType() != TopAbs_VERTEX)
+ Standard_ConstructionError::Raise("Invalid shape given for sphere center: it must be a point");
+ gp_Pnt aP = BRep_Tool::Pnt(TopoDS::Vertex(aShapePnt));
+
+ aShape = BRepPrimAPI_MakeSphere(aP, anR).Shape();
}
else {
}