Salome HOME
Update copyrights
[modules/shaper.git] / src / SketchSolver / PlaneGCSSolver / PlaneGCSSolver_Defs.h
1 // Copyright (C) 2014-2019  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 #ifndef PlaneGCSSolver_Defs_H_
21 #define PlaneGCSSolver_Defs_H_
22
23 #include <Constraints.h>
24 #include <Geo.h>
25 #include <memory>
26
27 typedef std::shared_ptr<GCS::Point>       GCSPointPtr;
28 typedef std::shared_ptr<GCS::Curve>       GCSCurvePtr;
29 typedef std::shared_ptr<GCS::Constraint>  GCSConstraintPtr;
30
31 // Tolerance for value of parameters
32 const double tolerance = 1.e-10;
33
34 #define PI 3.1415926535897932
35
36 // Types for data entities enumeration
37 typedef int ConstraintID;
38
39 // Predefined values for identifiers
40 const ConstraintID CID_UNKNOWN  =  0;
41 const ConstraintID CID_MOVEMENT = -1;
42 const ConstraintID CID_FICTIVE = 1024;
43
44 /// Types of entities
45 enum SketchSolver_EntityType {
46   ENTITY_UNKNOWN = 0,
47   ENTITY_SCALAR,
48   ENTITY_ANGLE,
49   ENTITY_POINT,
50   ENTITY_LINE,
51   ENTITY_CIRCLE,
52   ENTITY_ARC
53 };
54
55 /// Types of constraints
56 enum SketchSolver_ConstraintType {
57   CONSTRAINT_UNKNOWN = 0,
58   CONSTRAINT_COINCIDENCE,      // base coincidence if we don't know exact type yet
59   CONSTRAINT_PT_PT_COINCIDENT,
60   CONSTRAINT_PT_ON_LINE,
61   CONSTRAINT_PT_ON_CIRCLE,
62   CONSTRAINT_MIDDLE_POINT,
63   CONSTRAINT_DISTANCE,         // base distance if we don't know the measured objects yet
64   CONSTRAINT_PT_PT_DISTANCE,
65   CONSTRAINT_PT_LINE_DISTANCE,
66   CONSTRAINT_HORIZONTAL_DISTANCE,
67   CONSTRAINT_VERTICAL_DISTANCE,
68   CONSTRAINT_RADIUS,
69   CONSTRAINT_ANGLE,
70   CONSTRAINT_FIXED,
71   CONSTRAINT_HORIZONTAL,
72   CONSTRAINT_VERTICAL,
73   CONSTRAINT_PARALLEL,
74   CONSTRAINT_PERPENDICULAR,
75   CONSTRAINT_SYMMETRIC,
76   CONSTRAINT_EQUAL,           // base equality if we don't know the measured objects yet
77   CONSTRAINT_EQUAL_LINES,
78   CONSTRAINT_EQUAL_LINE_ARC,
79   CONSTRAINT_EQUAL_RADIUS,
80   CONSTRAINT_TANGENT,         // base tangency if we don't know the measured objects yet
81   CONSTRAINT_TANGENT_CIRCLE_LINE,
82   CONSTRAINT_TANGENT_CIRCLE_CIRCLE,
83   CONSTRAINT_COLLINEAR,
84   CONSTRAINT_MULTI_TRANSLATION,
85   CONSTRAINT_MULTI_ROTATION
86 };
87
88 #endif