summaryrefslogtreecommitdiff
path: root/src/DsgPrs/DsgPrs_MidPointPresentation.cxx
blob: 6472dd9063152bef5422ef1ce2aafde27baf420f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
// File:	DsgPrs_MidPointPresentation.cxx
// Created:	Fri Oct 20 16:00:58 2000
// Author:	Julia DOROVSKIKH
//		<jfa@androx.nnov.matra-dtv.fr>

#include <DsgPrs_MidPointPresentation.ixx>

#include <Precision.hxx>

#include <TCollection_ExtendedString.hxx>

#include <gp_Lin.hxx>
#include <gp_Circ.hxx>
#include <gp_Vec.hxx>
#include <gp_Dir.hxx>
#include <gp_Ax1.hxx>
#include <gp_Ax2.hxx>
#include <gp_Pnt.hxx>

#include <ElCLib.hxx>

#include <Graphic3d_Group.hxx>
#include <Graphic3d_Array1OfVertex.hxx>
#include <Graphic3d_AspectLine3d.hxx>

#include <Prs3d_Root.hxx>
#include <Prs3d_LineAspect.hxx>
#include <Prs3d_LengthAspect.hxx>
#include <Prs3d_Text.hxx>

//===================================================================
//Function:Add
//Purpose: draws the representation of a radial symmetry between two vertices.
//===================================================================
void DsgPrs_MidPointPresentation::Add (const Handle(Prs3d_Presentation)& aPresentation,
				       const Handle(Prs3d_Drawer)& aDrawer,	
				       const gp_Ax2&  theAxe,
				       const gp_Pnt&  MidPoint,
				       const gp_Pnt&  Position,
				       const gp_Pnt&  AttachPoint,
				       const Standard_Boolean first)
{ 
  Standard_Real rad = AttachPoint.Distance(MidPoint)/20.0;

  Handle(Prs3d_LengthAspect) LA = aDrawer->LengthAspect();
  Graphic3d_Array1OfVertex V(1,2);

  gp_Pnt Ptmp;

  gp_Ax2 ax = theAxe;
  ax.SetLocation(MidPoint);
  gp_Circ aCircleM (ax,rad);

  if ( first )
    {
      // center of the symmetry - circle around the MidPoint
      Prs3d_Root::NewGroup(aPresentation);
      Prs3d_Root::CurrentGroup(aPresentation)->SetPrimitivesAspect(LA->LineAspect()->Aspect());
      Standard_Real alpha = 2*Standard_PI;
      Standard_Integer nbp = 100;
      Graphic3d_Array1OfVertex VC(1,nbp);
      Standard_Real dteta = alpha/(nbp-1);
      gp_Pnt ptcur;
      for (Standard_Integer i = 1; i <= nbp; i++)
        {
          ptcur =  ElCLib::Value(dteta*(i-1),aCircleM);
          VC(i).SetCoord(ptcur.X(),ptcur.Y(),ptcur.Z());
        }
      Prs3d_Root::CurrentGroup(aPresentation)->Polyline(VC);

      // segment from mid point to the text position
      Prs3d_Root::NewGroup(aPresentation);
      Prs3d_Root::CurrentGroup(aPresentation)->SetPrimitivesAspect(LA->LineAspect()->Aspect());
      // mid point
      if ( Position.IsEqual(MidPoint,rad) )
        Ptmp = MidPoint;
      else
        Ptmp = ElCLib::Value(ElCLib::Parameter(aCircleM,Position),aCircleM);
      V(1).SetCoord(Ptmp.X(),Ptmp.Y(),Ptmp.Z());
      // text position
      V(2).SetCoord(Position.X(),Position.Y(),Position.Z());
      Prs3d_Root::CurrentGroup(aPresentation)->Polyline(V);

      // texte 
      TCollection_ExtendedString aText (" (+)");
      Prs3d_Text::Draw(aPresentation,LA->TextAspect(),aText,Position);
    }

  if ( !AttachPoint.IsEqual(MidPoint, Precision::Confusion()) )
    {
      // segment from mid point to the geometry
      Prs3d_Root::NewGroup(aPresentation);
      Prs3d_Root::CurrentGroup(aPresentation)->SetPrimitivesAspect(LA->LineAspect()->Aspect());
      // mid point
      Ptmp = ElCLib::Value(ElCLib::Parameter(aCircleM,AttachPoint),aCircleM);
      V(1).SetCoord(Ptmp.X(),Ptmp.Y(),Ptmp.Z());
      // attach point to the geometry
      V(2).SetCoord(AttachPoint.X(),AttachPoint.Y(),AttachPoint.Z());
      Prs3d_Root::CurrentGroup(aPresentation)->Polyline(V);
    }
}
  
//===================================================================
//Function:Add
//Purpose: draws the representation of a radial symmetry between two linear segments.
//===================================================================
void DsgPrs_MidPointPresentation::Add (const Handle(Prs3d_Presentation)& aPresentation,
				       const Handle(Prs3d_Drawer)& aDrawer,	
				       const gp_Ax2&  theAxe,
				       const gp_Pnt&  MidPoint,
				       const gp_Pnt&  Position,
				       const gp_Pnt&  AttachPoint,
				       const gp_Pnt&  Point1,
				       const gp_Pnt&  Point2,
				       const Standard_Boolean first)
{
  Standard_Real rad = AttachPoint.Distance(MidPoint)/20.0;
  if ( rad <= Precision::Confusion() ) rad = Point1.Distance(Point2)/20.0;

  Handle(Prs3d_LengthAspect) LA = aDrawer->LengthAspect();
  Graphic3d_Array1OfVertex V(1,2);

  gp_Pnt Ptmp;

  gp_Ax2 ax = theAxe;
  ax.SetLocation(MidPoint);
  gp_Circ aCircleM (ax,rad);

  if ( first )
    {
      // center of the symmetry - circle around the MidPoint
      Prs3d_Root::NewGroup(aPresentation);
      Prs3d_Root::CurrentGroup(aPresentation)->SetPrimitivesAspect(LA->LineAspect()->Aspect());
      Standard_Real alpha = 2*Standard_PI;
      Standard_Integer nbp = 100;
      Graphic3d_Array1OfVertex VC(1,nbp);
      Standard_Real dteta = alpha/(nbp-1);
      gp_Pnt ptcur;
      for (Standard_Integer i = 1; i <= nbp; i++)
        {
          ptcur =  ElCLib::Value(dteta*(i-1),aCircleM);
          VC(i).SetCoord(ptcur.X(),ptcur.Y(),ptcur.Z());
        }
      Prs3d_Root::CurrentGroup(aPresentation)->Polyline(VC);

      // segment from mid point to the text position
      Prs3d_Root::NewGroup(aPresentation);
      Prs3d_Root::CurrentGroup(aPresentation)->SetPrimitivesAspect(LA->LineAspect()->Aspect());
      // mid point
      if ( Position.IsEqual(MidPoint,rad) )
        Ptmp = MidPoint;
      else
        Ptmp = ElCLib::Value(ElCLib::Parameter(aCircleM,Position),aCircleM);
      V(1).SetCoord(Ptmp.X(),Ptmp.Y(),Ptmp.Z());
      // text position
      V(2).SetCoord(Position.X(),Position.Y(),Position.Z());
      Prs3d_Root::CurrentGroup(aPresentation)->Polyline(V);

      // texte 
      TCollection_ExtendedString aText (" (+)");
      Prs3d_Text::Draw(aPresentation,LA->TextAspect(),aText,Position);
    }

  if ( !AttachPoint.IsEqual(MidPoint, Precision::Confusion()) )
    {
      // segment from mid point to the geometry
      Prs3d_Root::NewGroup(aPresentation);
      Prs3d_Root::CurrentGroup(aPresentation)->SetPrimitivesAspect(LA->LineAspect()->Aspect());
      // mid point
      Ptmp = ElCLib::Value(ElCLib::Parameter(aCircleM,AttachPoint),aCircleM);
      V(1).SetCoord(Ptmp.X(),Ptmp.Y(),Ptmp.Z());
      // attach point to the geometry
      V(2).SetCoord(AttachPoint.X(),AttachPoint.Y(),AttachPoint.Z());
      Prs3d_Root::CurrentGroup(aPresentation)->Polyline(V);
    }

  // segment on line
  Prs3d_Root::NewGroup(aPresentation);
  Prs3d_Root::CurrentGroup(aPresentation)->SetPrimitivesAspect(LA->LineAspect()->Aspect());
  V(1).SetCoord(Point1.X(),Point1.Y(),Point1.Z());
  V(2).SetCoord(Point2.X(),Point2.Y(),Point2.Z());
  Prs3d_Root::CurrentGroup(aPresentation)->Polyline(V);
}
  
//===================================================================
//Function:Add
//Purpose: draws the representation of a radial symmetry between two circular arcs.
//===================================================================
void DsgPrs_MidPointPresentation::Add (const Handle(Prs3d_Presentation)& aPresentation,
				       const Handle(Prs3d_Drawer)& aDrawer,	
				       const gp_Circ& aCircle,
				       const gp_Pnt&  MidPoint,
				       const gp_Pnt&  Position,
				       const gp_Pnt&  AttachPoint,
				       const gp_Pnt&  Point1,
				       const gp_Pnt&  Point2,
				       const Standard_Boolean first)
{
  Standard_Real rad = AttachPoint.Distance(MidPoint)/20.0;
  if ( rad <= Precision::Confusion() ) rad = Point1.Distance(Point2)/20.0;

  Handle(Prs3d_LengthAspect) LA = aDrawer->LengthAspect();
  Graphic3d_Array1OfVertex V(1,2);

  gp_Pnt Ptmp,ptcur;

  gp_Ax2 ax = aCircle.Position();
  ax.SetLocation(MidPoint);
  gp_Circ aCircleM (ax,rad);

  if ( first )
    {
      // center of the symmetry - circle around the MidPoint
      Prs3d_Root::NewGroup(aPresentation);
      Prs3d_Root::CurrentGroup(aPresentation)->SetPrimitivesAspect(LA->LineAspect()->Aspect());
      Standard_Real alpha = 2*Standard_PI;
      Standard_Integer nbp = 100;
      Graphic3d_Array1OfVertex VC(1,nbp);
      Standard_Real dteta = alpha/(nbp-1);
      for (Standard_Integer i = 1; i <= nbp; i++)
        {
          ptcur =  ElCLib::Value(dteta*(i-1),aCircleM);
          VC(i).SetCoord(ptcur.X(),ptcur.Y(),ptcur.Z());
        }
      Prs3d_Root::CurrentGroup(aPresentation)->Polyline(VC);

      // segment from mid point to the text position
      Prs3d_Root::NewGroup(aPresentation);
      Prs3d_Root::CurrentGroup(aPresentation)->SetPrimitivesAspect(LA->LineAspect()->Aspect());
      // mid point
      if ( Position.IsEqual(MidPoint,rad) )
        Ptmp = MidPoint;
      else
        Ptmp = ElCLib::Value(ElCLib::Parameter(aCircleM,Position),aCircleM);
      V(1).SetCoord(Ptmp.X(),Ptmp.Y(),Ptmp.Z());
      // text position
      V(2).SetCoord(Position.X(),Position.Y(),Position.Z());
      Prs3d_Root::CurrentGroup(aPresentation)->Polyline(V);

      // texte 
      TCollection_ExtendedString aText (" (+)");
      Prs3d_Text::Draw(aPresentation,LA->TextAspect(),aText,Position);
    }

  if ( !AttachPoint.IsEqual(MidPoint, Precision::Confusion()) )
    {
      // segment from mid point to the geometry
      Prs3d_Root::NewGroup(aPresentation);
      Prs3d_Root::CurrentGroup(aPresentation)->SetPrimitivesAspect(LA->LineAspect()->Aspect());
      // mid point
      Ptmp = ElCLib::Value(ElCLib::Parameter(aCircleM,AttachPoint),aCircleM);
      V(1).SetCoord(Ptmp.X(),Ptmp.Y(),Ptmp.Z());
      // attach point to the geometry
      V(2).SetCoord(AttachPoint.X(),AttachPoint.Y(),AttachPoint.Z());
      Prs3d_Root::CurrentGroup(aPresentation)->Polyline(V);
    }

  // segment on circle
  Standard_Real pf = ElCLib::Parameter(aCircle,Point1);
  Standard_Real pl = ElCLib::Parameter(aCircle,Point2);
  Standard_Real alpha = pl - pf;
  if ( alpha < 0 ) alpha += 2*Standard_PI;
  Standard_Integer nb = (Standard_Integer)(50.0*alpha/PI);
  Standard_Integer nbp = Max(4,nb);
  Graphic3d_Array1OfVertex VC1(1,nbp);
  Standard_Real dteta = alpha/(nbp-1);

  for (Standard_Integer i = 1; i <= nbp; i++)
    {
      ptcur = ElCLib::Value(pf + dteta*(i-1),aCircle);
      VC1(i).SetCoord(ptcur.X(),ptcur.Y(),ptcur.Z());
    }
  Prs3d_Root::NewGroup(aPresentation);
  Prs3d_Root::CurrentGroup(aPresentation)->SetPrimitivesAspect(LA->LineAspect()->Aspect());
  Prs3d_Root::CurrentGroup(aPresentation)->Polyline(VC1);
}
  
//===================================================================
//Function:Add
//Purpose: draws the representation of a radial symmetry between two elliptic arcs.
//===================================================================
void DsgPrs_MidPointPresentation::Add (const Handle(Prs3d_Presentation)& aPresentation,
				       const Handle(Prs3d_Drawer)& aDrawer,	
				       const gp_Elips& aCircle,
				       const gp_Pnt&   MidPoint,
				       const gp_Pnt&   Position,
				       const gp_Pnt&   AttachPoint,
				       const gp_Pnt&   Point1,
				       const gp_Pnt&   Point2,
				       const Standard_Boolean first)
{
  Standard_Real rad = AttachPoint.Distance(MidPoint)/20.0;
  if ( rad <= Precision::Confusion() ) rad = Point1.Distance(Point2)/20.0;

  Handle(Prs3d_LengthAspect) LA = aDrawer->LengthAspect();
  Graphic3d_Array1OfVertex V(1,2);

  gp_Pnt Ptmp,ptcur;

  gp_Ax2 ax = aCircle.Position();
  ax.SetLocation(MidPoint);
  gp_Circ aCircleM (ax,rad);

  if ( first )
    {
      // center of the symmetry - circle around the MidPoint
      Prs3d_Root::NewGroup(aPresentation);
      Prs3d_Root::CurrentGroup(aPresentation)->SetPrimitivesAspect(LA->LineAspect()->Aspect());
      Standard_Real alpha = 2*Standard_PI;
      Standard_Integer nbp = 100;
      Graphic3d_Array1OfVertex VC(1,nbp);
      Standard_Real dteta = alpha/(nbp-1);
      for (Standard_Integer i = 1; i <= nbp; i++)
        {
          ptcur =  ElCLib::Value(dteta*(i-1),aCircleM);
          VC(i).SetCoord(ptcur.X(),ptcur.Y(),ptcur.Z());
        }
      Prs3d_Root::CurrentGroup(aPresentation)->Polyline(VC);

      // segment from mid point to the text position
      Prs3d_Root::NewGroup(aPresentation);
      Prs3d_Root::CurrentGroup(aPresentation)->SetPrimitivesAspect(LA->LineAspect()->Aspect());
      // mid point
      if ( Position.IsEqual(MidPoint,rad) )
        Ptmp = MidPoint;
      else
        Ptmp = ElCLib::Value(ElCLib::Parameter(aCircleM,Position),aCircleM);
      V(1).SetCoord(Ptmp.X(),Ptmp.Y(),Ptmp.Z());
      // text position
      V(2).SetCoord(Position.X(),Position.Y(),Position.Z());
      Prs3d_Root::CurrentGroup(aPresentation)->Polyline(V);

      // texte 
      TCollection_ExtendedString aText (" (+)");
      Prs3d_Text::Draw(aPresentation,LA->TextAspect(),aText,Position);
    }

  if ( !AttachPoint.IsEqual(MidPoint, Precision::Confusion()) )
    {
      // segment from mid point to the geometry
      Prs3d_Root::NewGroup(aPresentation);
      Prs3d_Root::CurrentGroup(aPresentation)->SetPrimitivesAspect(LA->LineAspect()->Aspect());
      // mid point
      Ptmp = ElCLib::Value(ElCLib::Parameter(aCircleM,AttachPoint),aCircleM);
      V(1).SetCoord(Ptmp.X(),Ptmp.Y(),Ptmp.Z());
      // attach point to the geometry
      V(2).SetCoord(AttachPoint.X(),AttachPoint.Y(),AttachPoint.Z());
      Prs3d_Root::CurrentGroup(aPresentation)->Polyline(V);
    }

  // segment on ellipse
  Standard_Real pf = ElCLib::Parameter(aCircle,Point1);
  Standard_Real pl = ElCLib::Parameter(aCircle,Point2);
  Standard_Real alpha = pl - pf;
  if ( alpha < 0 ) alpha += 2*Standard_PI;
  Standard_Integer nb = (Standard_Integer)(50.0*alpha/PI);
  Standard_Integer nbp = Max(4,nb);
  Graphic3d_Array1OfVertex VC1(1,nbp);
  Standard_Real dteta = alpha/(nbp-1);

  for (Standard_Integer i = 1; i <= nbp; i++)
    {
      ptcur = ElCLib::Value(pf + dteta*(i-1),aCircle);
      VC1(i).SetCoord(ptcur.X(),ptcur.Y(),ptcur.Z());
    }
  Prs3d_Root::NewGroup(aPresentation);
  Prs3d_Root::CurrentGroup(aPresentation)->SetPrimitivesAspect(LA->LineAspect()->Aspect());
  Prs3d_Root::CurrentGroup(aPresentation)->Polyline(VC1);
}