VTK  9.0.1
vtkFiberSurface.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPolyDataAlgorithm.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
316 #ifndef vtkFiberSurface_h
317 #define vtkFiberSurface_h
318 
319 #include "vtkFiltersTopologyModule.h" // For export macro
320 #include "vtkPolyDataAlgorithm.h"
321 
322 class VTKFILTERSTOPOLOGY_EXPORT vtkFiberSurface : public vtkPolyDataAlgorithm
323 {
324 public:
325  static vtkFiberSurface* New();
327  void PrintSelf(ostream& os, vtkIndent indent) override;
328 
332  void SetField1(const char* fieldName);
333 
337  void SetField2(const char* fieldName);
338 
348  {
359  bv_edge_23
360  };
361 
375  {
386  };
387 
388 protected:
389  vtkFiberSurface();
390  int FillInputPortInformation(int port, vtkInformation* info) override;
392 
393  // name of the input array names.
394  const char* Fields[2];
395 
396 private:
397  vtkFiberSurface(const vtkFiberSurface&) = delete;
398  void operator=(const vtkFiberSurface&) = delete;
399 };
400 #endif
vtkFiberSurface::bv_vertex_1
@ bv_vertex_1
Definition: vtkFiberSurface.h:351
vtkFiberSurface::vertex_2
@ vertex_2
Definition: vtkFiberSurface.h:379
vtkFiberSurface::bv_edge_03
@ bv_edge_03
Definition: vtkFiberSurface.h:356
vtkFiberSurface::vertex_1
@ vertex_1
Definition: vtkFiberSurface.h:378
vtkFiberSurface::not_used
@ not_used
Definition: vtkFiberSurface.h:376
vtkFiberSurface::bv_edge_01
@ bv_edge_01
Definition: vtkFiberSurface.h:354
vtkFiberSurface::bv_edge_02
@ bv_edge_02
Definition: vtkFiberSurface.h:355
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:35
vtkFiberSurface::bv_edge_13
@ bv_edge_13
Definition: vtkFiberSurface.h:358
vtkPolyDataAlgorithm::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkPolyDataAlgorithm.h
vtkFiberSurface::ClipVertexType
ClipVertexType
After generating the base fiber surface in each cell, we need a further clipping process to obtain th...
Definition: vtkFiberSurface.h:374
vtkX3D::port
@ port
Definition: vtkX3D.h:453
vtkPolyDataAlgorithm::RequestData
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
vtkFiberSurface::edge_2_parm_1
@ edge_2_parm_1
Definition: vtkFiberSurface.h:385
vtkFiberSurface::edge_1_parm_0
@ edge_1_parm_0
Definition: vtkFiberSurface.h:381
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkFiberSurface::bv_vertex_0
@ bv_vertex_0
Definition: vtkFiberSurface.h:350
vtkFiberSurface::edge_2_parm_0
@ edge_2_parm_0
Definition: vtkFiberSurface.h:382
vtkFiberSurface::bv_edge_12
@ bv_edge_12
Definition: vtkFiberSurface.h:357
vtkFiberSurface::edge_0_parm_1
@ edge_0_parm_1
Definition: vtkFiberSurface.h:383
vtkPolyDataAlgorithm::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkFiberSurface::bv_not_used
@ bv_not_used
Definition: vtkFiberSurface.h:349
vtkFiberSurface
Given a fiber surface control polygon (FSCP) and an unstructured grid composed of tetrahedral cells w...
Definition: vtkFiberSurface.h:322
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:73
vtkX3D::info
@ info
Definition: vtkX3D.h:382
vtkFiberSurface::edge_0_parm_0
@ edge_0_parm_0
Definition: vtkFiberSurface.h:380
vtkFiberSurface::bv_vertex_2
@ bv_vertex_2
Definition: vtkFiberSurface.h:352
vtkFiberSurface::edge_1_parm_1
@ edge_1_parm_1
Definition: vtkFiberSurface.h:384
vtkFiberSurface::BaseVertexType
BaseVertexType
This structure lists the vertices to use for the marching tetrahedra, Some of these vertices need to ...
Definition: vtkFiberSurface.h:347
vtkFiberSurface::vertex_0
@ vertex_0
Definition: vtkFiberSurface.h:377
vtkPolyDataAlgorithm::New
static vtkPolyDataAlgorithm * New()
vtkFiberSurface::bv_vertex_3
@ bv_vertex_3
Definition: vtkFiberSurface.h:353
vtkPolyDataAlgorithm
Superclass for algorithms that produce only polydata as output.
Definition: vtkPolyDataAlgorithm.h:41