Salome HOME
Issues #2850, #2860: Change type of angle while Python Dump, because the configuratio...
[modules/shaper.git] / src / SketchPlugin / Test / TestTrimCircle04.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 salome.shaper import model
22
23 from ModelAPI import *
24 from GeomDataAPI import *
25 from ModelGeomAlgo import ModelGeomAlgo_Point2D
26 from salome.shaper import geom
27 import math
28
29 TOLERANCE = 1.e-7
30
31 SketchLineId = 'SketchLine'
32 SketchArcId = 'SketchArc'
33 SketchCircleId = 'SketchCircle'
34 SketchConstraintCoincidenceId = 'SketchConstraintCoincidence'
35
36 aSession = ModelAPI_Session.get()
37 model.begin()
38 partSet = model.moduleDocument()
39 Part = model.addPart(partSet)
40 Part_doc = Part.document()
41
42 # Test1:begin split on circle with coincident point and intersection line : smaller part
43 Sketch = model.addSketch(Part_doc, model.defaultPlane("XOY"))
44 SketchCircle = Sketch.addCircle(50, 50, 20)
45 SketchLine_1 = Sketch.addLine(70, 50, 80, 80)
46 SketchLine_2 = Sketch.addLine(80, 80, 50, 70)
47
48 SketchConstraintCoincidence_1_1 = Sketch.setCoincident(SketchLine_1.endPoint(), SketchLine_2.startPoint())
49 SketchConstraintCoincidence_1_2 = Sketch.setCoincident(SketchLine_1.startPoint(), SketchCircle.results()[1])
50 SketchConstraintCoincidence_1_3 = Sketch.setCoincident(SketchLine_2.endPoint(), SketchCircle.results()[1])
51
52
53 Sketch_features = featureToCompositeFeature(Sketch.feature())
54 assert (Sketch_features.numberOfSubs() == 6)
55 #intersection points on circle to prepare a trim selection point
56 SketchLine_intersecting = Sketch.addLine(10, 60, 90, 60)
57 Circle_Points = ModelGeomAlgo_Point2D.getSetOfPntIntersectedShape(SketchCircle.feature(), FeatureList([SketchLine_intersecting.feature()]))
58 assert(len(Circle_Points) == 2)
59 ModelAPI.removeFeaturesAndReferences(FeatureSet([SketchLine_intersecting.feature()]))
60 Sketch_features = featureToCompositeFeature(Sketch.feature())
61 assert (Sketch_features.numberOfSubs() == 6)
62
63 assert (len(Circle_Points) == 2)
64 GeomPoint = Circle_Points[1]
65 if Circle_Points[0].x() < Circle_Points[1].x():
66   GeomPoint = Circle_Points[1]
67 else:
68   GeomPoint = Circle_Points[0]
69
70 #check number of features before trim
71 Sketch_feature = featureToCompositeFeature(Sketch.feature())
72 idList_before = []
73 for index in range(Sketch_feature.numberOfSubs()):
74   idList_before.append(Sketch_feature.subFeature(index).getKind())
75
76 assert(idList_before.count(SketchCircleId) == 1)
77 assert(idList_before.count(SketchArcId) == 0)
78 assert(idList_before.count(SketchLineId) == 2)
79 assert(idList_before.count(SketchConstraintCoincidenceId) == 3)
80
81 #perform trim
82 SketchTrim = Sketch.addTrim(SketchCircle, Sketch.to2D(GeomPoint))
83 SketchTrim.execute()
84 model.do()
85
86 #check number of features after trim
87 SketchFeatures = featureToCompositeFeature(Sketch.feature())
88 idList_after = []
89 for SubIndex in range(SketchFeatures.numberOfSubs()):
90     SubFeature = SketchFeatures.subFeature(SubIndex)
91     idList_after.append(SubFeature.getKind())
92     if SubFeature.getKind() == SketchArcId:
93       SketchArc = SubFeature
94
95 assert(idList_after.count(SketchCircleId) == 0)
96 assert(idList_after.count(SketchArcId) == 1)
97 assert(idList_after.count(SketchLineId) == 2)
98 assert(idList_after.count(SketchConstraintCoincidenceId) == 3)
99
100
101 #check arc position intersections of created arc to an additional line
102 SketchLine_intersecting_1 = Sketch.addLine(0, 0, 50, 50)
103 SketchLine_intersecting_2 = Sketch.addLine(50, 50, 100, 100)
104
105 Intersection_Points_1 = ModelGeomAlgo_Point2D.getSetOfPntIntersectedShape(SketchArc, FeatureList([SketchLine_intersecting_1.feature()]))
106 Intersection_Points_2 = ModelGeomAlgo_Point2D.getSetOfPntIntersectedShape(SketchArc, FeatureList([SketchLine_intersecting_2.feature()]))
107
108 assert(len(Intersection_Points_1) == 1)
109 assert(len(Intersection_Points_2) == 0)
110
111 #add point for check
112 SketchPoint = Sketch.addPoint(GeomPoint.x(), GeomPoint.y())
113 Intersection_Points_3 = ModelGeomAlgo_Point2D.getSetOfPntIntersectedShape(SketchArc, FeatureList([SketchPoint.feature()]))
114 assert(len(Intersection_Points_3) == 0)
115
116 model.end()
117
118 assert(model.checkPythonDump())