File: AVTestMultiBlockStreamer.cs

package info (click to toggle)
activiz.net 1%3A1.0~git20111214-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 11,280 kB
  • ctags: 5,957
  • sloc: cs: 28,767; python: 915; cpp: 130; makefile: 35; sh: 11
file content (503 lines) | stat: -rw-r--r-- 16,668 bytes parent folder | download | duplicates (2)
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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
using Kitware.VTK;
using System;
// input file is C:\VTK\Graphics\Testing\Tcl\TestMultiBlockStreamer.tcl
// output file is AVTestMultiBlockStreamer.cs
/// <summary>
/// The testing class derived from AVTestMultiBlockStreamer
/// </summary>
public class AVTestMultiBlockStreamerClass
{
  /// <summary>
  /// The main entry method called by the CSharp driver
  /// </summary>
  /// <param name="argv"></param>
  public static void AVTestMultiBlockStreamer(String [] argv)
  {
  //Prefix Content is: ""
  
  // we need to use composite data pipeline with multiblock datasets[]
  alg = new vtkAlgorithm();
  pip = new vtkCompositeDataPipeline();
  vtkAlgorithm.SetDefaultExecutivePrototype((vtkExecutive)pip);
  //skipping Delete pip
  Ren1 = vtkRenderer.New();
  Ren1.SetBackground((double)0.33,(double)0.35,(double)0.43);

  renWin = vtkRenderWindow.New();
  renWin.AddRenderer((vtkRenderer)Ren1);

  iren = new vtkRenderWindowInteractor();
  iren.SetRenderWindow((vtkRenderWindow)renWin);

  Plot3D0 = new vtkPLOT3DReader();
  Plot3D0.SetFileName((string)"" + (VTK_DATA_ROOT.ToString()) + "/Data/combxyz.bin");
  Plot3D0.SetQFileName((string)"" + (VTK_DATA_ROOT.ToString()) + "/Data/combq.bin");
  Plot3D0.SetBinaryFile((int)1);
  Plot3D0.SetMultiGrid((int)0);
  Plot3D0.SetHasByteCount((int)0);
  Plot3D0.SetIBlanking((int)0);
  Plot3D0.SetTwoDimensionalGeometry((int)0);
  Plot3D0.SetForceRead((int)0);
  Plot3D0.SetByteOrder((int)0);

  Geometry5 = new vtkStructuredGridOutlineFilter();
  Geometry5.SetInputConnection((vtkAlgorithmOutput)Plot3D0.GetOutputPort());

  Mapper5 = vtkPolyDataMapper.New();
  Mapper5.SetInputConnection((vtkAlgorithmOutput)Geometry5.GetOutputPort());
  Mapper5.SetImmediateModeRendering((int)1);
  Mapper5.UseLookupTableScalarRangeOn();
  Mapper5.SetScalarVisibility((int)0);
  Mapper5.SetScalarModeToDefault();

  Actor5 = new vtkActor();
  Actor5.SetMapper((vtkMapper)Mapper5);
  Actor5.GetProperty().SetRepresentationToSurface();
  Actor5.GetProperty().SetInterpolationToGouraud();
  Actor5.GetProperty().SetAmbient((double)0.15);
  Actor5.GetProperty().SetDiffuse((double)0.85);
  Actor5.GetProperty().SetSpecular((double)0.1);
  Actor5.GetProperty().SetSpecularPower((double)100);
  Actor5.GetProperty().SetSpecularColor((double)1,(double)1,(double)1);

  Actor5.GetProperty().SetColor((double)1,(double)1,(double)1);
  Ren1.AddActor((vtkProp)Actor5);

  ExtractGrid[0] = new vtkExtractGrid();
  ExtractGrid[0].SetInputConnection((vtkAlgorithmOutput)Plot3D0.GetOutputPort());
  ExtractGrid[0].SetVOI((int)0,(int)14,(int)0,(int)32,(int)0,(int)24);
  ExtractGrid[0].SetSampleRate((int)1,(int)1,(int)1);
  ExtractGrid[0].SetIncludeBoundary((int)0);

  ExtractGrid[1] = new vtkExtractGrid();
  ExtractGrid[1].SetInputConnection((vtkAlgorithmOutput)Plot3D0.GetOutputPort());
  ExtractGrid[1].SetVOI((int)14,(int)29,(int)0,(int)32,(int)0,(int)24);
  ExtractGrid[1].SetSampleRate((int)1,(int)1,(int)1);
  ExtractGrid[1].SetIncludeBoundary((int)0);

  ExtractGrid[2] = new vtkExtractGrid();
  ExtractGrid[2].SetInputConnection((vtkAlgorithmOutput)Plot3D0.GetOutputPort());
  ExtractGrid[2].SetVOI((int)29,(int)56,(int)0,(int)32,(int)0,(int)24);
  ExtractGrid[2].SetSampleRate((int)1,(int)1,(int)1);
  ExtractGrid[2].SetIncludeBoundary((int)0);

  LineSourceWidget0 = new vtkLineSource();
  LineSourceWidget0.SetPoint1((double)3.05638,(double)-3.00497,(double)28.2211);
  LineSourceWidget0.SetPoint2((double)3.05638,(double)3.95916,(double)28.2211);
  LineSourceWidget0.SetResolution((int)20);

  mbds = new vtkMultiBlockDataSet();
  mbds.SetNumberOfBlocks((uint)3);
  i = 0;
  while((i) < 3)
    {
      ExtractGrid[i].Update();
      sg[i] = vtkStructuredGrid.New();
      sg[i].ShallowCopy(ExtractGrid[i].GetOutput());
      mbds.SetBlock((uint)i, sg[i]);
      //skipping Delete sg[i]
      i = i + 1;
    }

  Stream0 = new vtkStreamTracer();
  Stream0.SetInput((vtkDataObject)mbds);
  Stream0.SetSource((vtkDataSet)LineSourceWidget0.GetOutput());
  Stream0.SetIntegrationStepUnit(2);
  Stream0.SetMaximumPropagation((double)20);
  Stream0.SetInitialIntegrationStep((double)0.5);
  Stream0.SetIntegrationDirection((int)0);
  Stream0.SetIntegratorType((int)0);
  Stream0.SetMaximumNumberOfSteps((int)2000);
  Stream0.SetTerminalSpeed((double)1e-12);

  //skipping Delete mbds

  aa = new vtkAssignAttribute();
  aa.SetInputConnection((vtkAlgorithmOutput)Stream0.GetOutputPort());
  aa.Assign((string)"Normals",(string)"NORMALS",(string)"POINT_DATA");

  Ribbon0 = new vtkRibbonFilter();
  Ribbon0.SetInputConnection((vtkAlgorithmOutput)aa.GetOutputPort());
  Ribbon0.SetWidth((double)0.1);
  Ribbon0.SetAngle((double)0);
  Ribbon0.SetDefaultNormal((double)0,(double)0,(double)1);
  Ribbon0.SetVaryWidth((int)0);

  LookupTable1 = new vtkLookupTable();
  LookupTable1.SetNumberOfTableValues((int)256);
  LookupTable1.SetHueRange((double)0,(double)0.66667);
  LookupTable1.SetSaturationRange((double)1,(double)1);
  LookupTable1.SetValueRange((double)1,(double)1);
  LookupTable1.SetTableRange((double)0.197813,(double)0.710419);
  LookupTable1.SetVectorComponent((int)0);
  LookupTable1.Build();

  Mapper10 = vtkPolyDataMapper.New();
  Mapper10.SetInputConnection((vtkAlgorithmOutput)Ribbon0.GetOutputPort());
  Mapper10.SetImmediateModeRendering((int)1);
  Mapper10.UseLookupTableScalarRangeOn();
  Mapper10.SetScalarVisibility((int)1);
  Mapper10.SetScalarModeToUsePointFieldData();
  Mapper10.SelectColorArray((string)"Density");
  Mapper10.SetLookupTable((vtkScalarsToColors)LookupTable1);

  Actor10 = new vtkActor();
  Actor10.SetMapper((vtkMapper)Mapper10);
  Actor10.GetProperty().SetRepresentationToSurface();
  Actor10.GetProperty().SetInterpolationToGouraud();
  Actor10.GetProperty().SetAmbient((double)0.15);
  Actor10.GetProperty().SetDiffuse((double)0.85);
  Actor10.GetProperty().SetSpecular((double)0);
  Actor10.GetProperty().SetSpecularPower((double)1);
  Actor10.GetProperty().SetSpecularColor((double)1,(double)1,(double)1);
  Ren1.AddActor((vtkProp)Actor10);

  // enable user interface interactor[]
  iren.Initialize();
  // prevent the tk window from showing up then start the event loop[]
  vtkAlgorithm.SetDefaultExecutivePrototype(null);
  //skipping Delete alg
  
//deleteAllVTKObjects();
  }
static string VTK_DATA_ROOT;
static int threshold;
static vtkAlgorithm alg;
static vtkCompositeDataPipeline pip;
static vtkRenderer Ren1;
static vtkRenderWindow renWin;
static vtkRenderWindowInteractor iren;
static vtkPLOT3DReader Plot3D0;
static vtkStructuredGridOutlineFilter Geometry5;
static vtkPolyDataMapper Mapper5;
static vtkActor Actor5;
static vtkExtractGrid[] ExtractGrid = new vtkExtractGrid[100];
static vtkLineSource LineSourceWidget0;
static vtkMultiBlockDataSet mbds;
static int i;
static vtkStructuredGrid[] sg = new vtkStructuredGrid[100];
static vtkStreamTracer Stream0;
static vtkAssignAttribute aa;
static vtkRibbonFilter Ribbon0;
static vtkLookupTable LookupTable1;
static vtkPolyDataMapper Mapper10;
static vtkActor Actor10;


        ///<summary> A Get Method for Static Variables </summary>
        public static string GetVTK_DATA_ROOT()
        {
            return VTK_DATA_ROOT;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void SetVTK_DATA_ROOT(string toSet)
        {
            VTK_DATA_ROOT = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static int Getthreshold()
        {
            return threshold;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void Setthreshold(int toSet)
        {
            threshold = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkAlgorithm Getalg()
        {
            return alg;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void Setalg(vtkAlgorithm toSet)
        {
            alg = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkCompositeDataPipeline Getpip()
        {
            return pip;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void Setpip(vtkCompositeDataPipeline toSet)
        {
            pip = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkRenderer GetRen1()
        {
            return Ren1;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void SetRen1(vtkRenderer toSet)
        {
            Ren1 = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkRenderWindow GetrenWin()
        {
            return renWin;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void SetrenWin(vtkRenderWindow toSet)
        {
            renWin = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkRenderWindowInteractor Getiren()
        {
            return iren;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void Setiren(vtkRenderWindowInteractor toSet)
        {
            iren = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkPLOT3DReader GetPlot3D0()
        {
            return Plot3D0;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void SetPlot3D0(vtkPLOT3DReader toSet)
        {
            Plot3D0 = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkStructuredGridOutlineFilter GetGeometry5()
        {
            return Geometry5;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void SetGeometry5(vtkStructuredGridOutlineFilter toSet)
        {
            Geometry5 = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkPolyDataMapper GetMapper5()
        {
            return Mapper5;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void SetMapper5(vtkPolyDataMapper toSet)
        {
            Mapper5 = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkActor GetActor5()
        {
            return Actor5;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void SetActor5(vtkActor toSet)
        {
            Actor5 = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkExtractGrid GetExtractGrid0()
        {
            return ExtractGrid[0];
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void SetExtractGrid0(vtkExtractGrid toSet)
        {
            ExtractGrid[0] = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkExtractGrid GetExtractGrid1()
        {
            return ExtractGrid[1];
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void SetExtractGrid1(vtkExtractGrid toSet)
        {
            ExtractGrid[1] = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkExtractGrid GetExtractGrid2()
        {
            return ExtractGrid[2];
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void SetExtractGrid2(vtkExtractGrid toSet)
        {
            ExtractGrid[2] = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkLineSource GetLineSourceWidget0()
        {
            return LineSourceWidget0;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void SetLineSourceWidget0(vtkLineSource toSet)
        {
            LineSourceWidget0 = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkMultiBlockDataSet Getmbds()
        {
            return mbds;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void Setmbds(vtkMultiBlockDataSet toSet)
        {
            mbds = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static int Geti()
        {
            return i;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void Seti(int toSet)
        {
            i = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkStructuredGrid[] Getsg()
        {
            return sg;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void Setsg(vtkStructuredGrid[] toSet)
        {
            sg = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkStreamTracer GetStream0()
        {
            return Stream0;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void SetStream0(vtkStreamTracer toSet)
        {
            Stream0 = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkAssignAttribute Getaa()
        {
            return aa;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void Setaa(vtkAssignAttribute toSet)
        {
            aa = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkRibbonFilter GetRibbon0()
        {
            return Ribbon0;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void SetRibbon0(vtkRibbonFilter toSet)
        {
            Ribbon0 = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkLookupTable GetLookupTable1()
        {
            return LookupTable1;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void SetLookupTable1(vtkLookupTable toSet)
        {
            LookupTable1 = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkPolyDataMapper GetMapper10()
        {
            return Mapper10;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void SetMapper10(vtkPolyDataMapper toSet)
        {
            Mapper10 = toSet;
        }
        
        ///<summary> A Get Method for Static Variables </summary>
        public static vtkActor GetActor10()
        {
            return Actor10;
        }
        
        ///<summary> A Set Method for Static Variables </summary>
        public static void SetActor10(vtkActor toSet)
        {
            Actor10 = toSet;
        }
        
  ///<summary>Deletes all static objects created</summary>
  public static void deleteAllVTKObjects()
  {
  	//clean up vtk objects
  	if(alg!= null){alg.Dispose();}
  	if(pip!= null){pip.Dispose();}
  	if(Ren1!= null){Ren1.Dispose();}
  	if(renWin!= null){renWin.Dispose();}
  	if(iren!= null){iren.Dispose();}
  	if(Plot3D0!= null){Plot3D0.Dispose();}
  	if(Geometry5!= null){Geometry5.Dispose();}
  	if(Mapper5!= null){Mapper5.Dispose();}
  	if(Actor5!= null){Actor5.Dispose();}
  	if(ExtractGrid[0]!= null){ExtractGrid[0].Dispose();}
  	if(ExtractGrid[1]!= null){ExtractGrid[1].Dispose();}
  	if(ExtractGrid[2]!= null){ExtractGrid[2].Dispose();}
  	if(LineSourceWidget0!= null){LineSourceWidget0.Dispose();}
  	if(mbds!= null){mbds.Dispose();}
  	if(Stream0!= null){Stream0.Dispose();}
  	if(aa!= null){aa.Dispose();}
  	if(Ribbon0!= null){Ribbon0.Dispose();}
  	if(LookupTable1!= null){LookupTable1.Dispose();}
  	if(Mapper10!= null){Mapper10.Dispose();}
  	if(Actor10!= null){Actor10.Dispose();}
  }

}
//--- end of script --//