Salome HOME
f368774ae836d143a68bf88fd43f27e42a08ce8d
[modules/shaper.git] / test.API / SHAPER / Primitives / TestAPI_Sphere.py
1 # Copyright (C) 2014-2023  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 from GeomAlgoAPI import GeomAlgoAPI_ShapeAPI as shaperpy
21 from GeomAlgoAPI import GeomAlgoAPI_Exception as myExcept
22 from GeomAPI import GeomAPI_Pnt as pnt
23
24 # Points
25 pnt1 = pnt(10., 10., 10.)
26
27 Sphere_1 = shaperpy.makeSphere(pnt1, 10.)
28 Sphere_2 = shaperpy.makeSphere(10.)
29
30 try:
31   Sphere_3 = shaperpy.makeSphere(pnt1, 0.)
32 except myExcept as ec:
33   assert(ec.what() == "Sphere builder :: radius is negative or null.")
34
35 try:
36   Sphere_4 = shaperpy.makeSphere(0.)
37 except myExcept as ec:
38   assert(ec.what() == "Sphere builder :: radius is negative or null.")
39
40 try:
41   Sphere_5 = shaperpy.makeSphere(None, 10.)
42 except myExcept as ec:
43   assert(ec.what() == "Sphere builder :: center is not valid.")