]> SALOME platform Git repositories - modules/shaper.git/blob - test.API/SHAPER/Primitives/TestAPI_Cone.py
Salome HOME
[Code coverage GeomAlgoAPI]: Refactoring of ShapeAPI and additional unit tests
[modules/shaper.git] / test.API / SHAPER / Primitives / TestAPI_Cone.py
1 ## Copyright (C) 2014-2017  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
18 ## email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 ##
20
21 from GeomAlgoAPI import GeomAlgoAPI_ShapeAPI as shaperpy
22 from GeomAlgoAPI import GeomAlgoAPI_Exception as myExcept
23 from GeomAlgoAPI import GeomAlgoAPI_EdgeBuilder as edgeBuilder
24 from GeomAPI import GeomAPI_Pnt as pnt
25 from GeomAPI import GeomAPI_Ax1 as axis
26 from GeomAPI import GeomAPI_Dir as direction
27
28 # Points
29 pnt1 = pnt(0., 0., 0.)
30 pnt2 = pnt(10., 10., 10.)
31
32 # Axis
33 yDir = direction(0.,10.,0.)
34 ax1 = axis(pnt1, yDir)
35
36 # Edges
37 edgaxis = edgeBuilder.line(ax1.dir().x(), ax1.dir().y(), ax1.dir().z())
38
39 Cone_1 = shaperpy.makeCone(5., 10., 10.)
40 Cone_2 = shaperpy.makeCone(0., 10., 10.)
41 Cone_3 = shaperpy.makeCone(5., 0., 10.)
42
43 try:
44   Cone_4 = shaperpy.makeCone(5., 10., 0.)
45 except myExcept as ec:
46   assert(ec.what() == "Cone builder :: height is negative or null.")
47
48 Cone_5 = shaperpy.makeCone(pnt2, edgaxis, 5., 10., 10.)
49 Cone_6 = shaperpy.makeCone(pnt2, edgaxis, 0., 10., 10.)
50 Cone_7 = shaperpy.makeCone(pnt2, edgaxis, 5., 0., 10.)
51
52 try:
53   Cone_8 = shaperpy.makeCone(None, edgaxis, 5., 10., 10.)
54 except myExcept as ec:
55   assert(ec.what() == "Cone builder :: the base point is not valid.")
56
57 try:
58   Cone_9 = shaperpy.makeCone(pnt2, None, 5., 10., 10.)
59 except myExcept as ec:
60   assert(ec.what() == "Cone builder :: the axis is not valid.")
61
62 try:
63   Cone_10 = shaperpy.makeCone(pnt2, edgaxis, 5., 10., 0.)
64 except myExcept as ec:
65   assert(ec.what() == "Cone builder :: height is negative or null.")