Home
last modified time | relevance | path

Searched refs:BranchFactor (Results 1 – 23 of 23) sorted by relevance

/dports/math/vtk6/VTK-6.2.0/Filters/Sources/
H A DvtkHyperTreeGridSource.cxx50 this->BranchFactor = 2; in vtkHyperTreeGridSource()
362 this->BlockSize = this->BranchFactor; in RequestData()
365 this->BlockSize *= this->BranchFactor; in RequestData()
382 this->Output->SetBranchFactor( this->BranchFactor ); in RequestData()
421 fact *= this->BranchFactor; in RequestData()
1043 int xDim = this->BranchFactor; in SubdivideFromQuadric()
1044 int yDim = this->Dimension > 1 ? this->BranchFactor : 1; in SubdivideFromQuadric()
1045 int zDim = this->Dimension > 2 ? this->BranchFactor : 1; in SubdivideFromQuadric()
1051 newSize[2] = size[2] / this->BranchFactor; in SubdivideFromQuadric()
1053 newSize[1] = size[1] / this->BranchFactor; in SubdivideFromQuadric()
[all …]
H A DvtkHyperTreeGridSource.h100 vtkSetClampMacro(BranchFactor, unsigned int, 2, 3);
101 vtkGetMacro(BranchFactor, unsigned int);
231 unsigned int BranchFactor; variable
/dports/math/vtk9/VTK-9.1.0/Common/DataModel/
H A DvtkHyperTreeGridScales.h42 : BranchFactor(branchfactor) in vtkHyperTreeGridScales()
53 double GetBranchFactor() const { return this->BranchFactor; } in GetBranchFactor()
127 *current = *previous / this->BranchFactor; in Update()
134 const double BranchFactor; variable
H A DvtkHyperTreeGrid.cxx128 this->BranchFactor = 0; in vtkHyperTreeGrid()
217 this->BranchFactor = 0; in Initialize()
372 os << indent << "BranchFactor: " << this->BranchFactor << endl; in PrintSelf()
456 this->BranchFactor = htg->BranchFactor; in CopyEmptyStructure()
497 this->BranchFactor = htg->BranchFactor; in CopyStructure()
683 this->NumberOfChildren = this->BranchFactor; in SetExtent()
686 this->NumberOfChildren *= this->BranchFactor; in SetExtent()
727 if (this->BranchFactor == factor && this->NumberOfChildren == num) in SetBranchFactor()
733 this->BranchFactor = factor; in SetBranchFactor()
985 switch (this->BranchFactor) in FindNonOrientedGeometryCursor()
[all …]
H A DvtkHyperTree.cxx44 os << indent << "BranchFactor: " << this->BranchFactor << "\n"; in PrintSelf()
66 this->BranchFactor = branchFactor; in InitializeBase()
97 this->BranchFactor = ht->BranchFactor; in CopyStructure()
111 this->Scales = std::make_shared<vtkHyperTreeGridScales>(this->BranchFactor, scales); in InitializeScales()
H A DvtkHyperTree.h335 int GetBranchFactor() const { return this->BranchFactor; } in GetBranchFactor()
534 unsigned char BranchFactor; variable
H A DvtkHyperTreeGrid.h280 unsigned int GetBranchFactor() const { return this->BranchFactor; } in GetBranchFactor()
762 unsigned int BranchFactor; // 2 or 3 variable
H A DvtkUniformHyperTreeGrid.cxx70 tree = vtkHyperTree::CreateInstance(this->BranchFactor, this->Dimension); in GetTree()
84 std::make_shared<vtkHyperTreeGridScales>(this->BranchFactor, this->GridScale); in GetTree()
/dports/math/vtk8/VTK-8.2.0/Filters/Sources/
H A DvtkHyperTreeGridSource.cxx48 this->BranchFactor = 2; in vtkHyperTreeGridSource()
357 this->BlockSize = this->BranchFactor; in RequestData()
940 int xDim = this->BranchFactor; in SubdivideFromStringDescriptor()
941 int yDim = this->BranchFactor; in SubdivideFromStringDescriptor()
942 int zDim = this->BranchFactor; in SubdivideFromStringDescriptor()
1168 int xDim = this->BranchFactor; in SubdivideFromBitsDescriptor()
1169 int yDim = this->BranchFactor; in SubdivideFromBitsDescriptor()
1170 int zDim = this->BranchFactor; in SubdivideFromBitsDescriptor()
1392 int xDim = this->BranchFactor; in SubdivideFromQuadric()
1393 int yDim = this->BranchFactor; in SubdivideFromQuadric()
[all …]
H A DvtkHyperTreeGridSource.h139 vtkSetClampMacro(BranchFactor, unsigned int, 2, 3);
140 vtkGetMacro(BranchFactor, unsigned int);
328 unsigned int BranchFactor; variable
/dports/math/vtk9/VTK-9.1.0/Filters/Sources/
H A DvtkHyperTreeGridSource.cxx48 this->BranchFactor = 2; in vtkHyperTreeGridSource()
412 this->BlockSize = this->BranchFactor; in RequestData()
942 int xDim = this->BranchFactor; in SubdivideFromStringDescriptor()
943 int yDim = this->BranchFactor; in SubdivideFromStringDescriptor()
944 int zDim = this->BranchFactor; in SubdivideFromStringDescriptor()
1170 int xDim = this->BranchFactor; in SubdivideFromBitsDescriptor()
1171 int yDim = this->BranchFactor; in SubdivideFromBitsDescriptor()
1172 int zDim = this->BranchFactor; in SubdivideFromBitsDescriptor()
1385 int xDim = this->BranchFactor; in SubdivideFromQuadric()
1386 int yDim = this->BranchFactor; in SubdivideFromQuadric()
[all …]
H A DvtkUniformHyperTreeGridSource.cxx69 this->BlockSize = this->BranchFactor; in RequestData()
72 this->BlockSize *= this->BranchFactor; in RequestData()
87 output->SetBranchFactor(this->BranchFactor); in RequestData()
H A DvtkHyperTreeGridSource.h142 vtkSetClampMacro(BranchFactor, unsigned int, 2, 3);
143 vtkGetMacro(BranchFactor, unsigned int);
312 unsigned int BranchFactor; variable
/dports/math/vtk6/VTK-6.2.0/Common/DataModel/
H A DvtkHyperTree.cxx791 os << indent << "BranchFactor=" << this->BranchFactor << endl; in PrintSelf()
822 return this->BranchFactor; in GetBranchFactor()
854 this->BranchFactor = 2; in vtkCompactHyperTree()
858 this->BranchFactor = 3; in vtkCompactHyperTree()
862 this->BranchFactor = 2; in vtkCompactHyperTree()
866 this->BranchFactor = 2; in vtkCompactHyperTree()
870 this->BranchFactor = 3; in vtkCompactHyperTree()
874 this->BranchFactor = 3; in vtkCompactHyperTree()
888 int BranchFactor; member in vtkCompactHyperTree
H A DvtkHyperTreeGrid.cxx84 this->BranchFactor = 2; in vtkHyperTreeGrid()
224 this->BranchFactor = htg->BranchFactor; in CopyStructure()
340 this->NumberOfChildren = this->BranchFactor; in SetDimension()
343 this->NumberOfChildren *= this->BranchFactor; in SetDimension()
355 if ( this->BranchFactor == factor ) in SetBranchFactor()
359 this->BranchFactor = factor; in SetBranchFactor()
362 this->NumberOfChildren = this->BranchFactor; in SetBranchFactor()
365 this->NumberOfChildren *= this->BranchFactor; in SetBranchFactor()
1150 if ( this->BranchFactor == 2 ) in InitializeSuperCursorChild()
1326 factor /= this->BranchFactor; in ComputeDualGrid()
[all …]
H A DvtkHyperTreeGrid.h111 vtkGetMacro(BranchFactor, unsigned int);
374 unsigned int BranchFactor; variable
/dports/math/vtk8/VTK-8.2.0/Common/DataModel/
H A DvtkHyperTree.cxx517 os << indent << "BranchFactor=" << this->BranchFactor << endl; in PrintSelf()
585 return this->BranchFactor; in GetBranchFactor()
781 this->BranchFactor = 2; in vtkCompactHyperTree()
785 this->BranchFactor = 3; in vtkCompactHyperTree()
789 this->BranchFactor = 2; in vtkCompactHyperTree()
793 this->BranchFactor = 2; in vtkCompactHyperTree()
797 this->BranchFactor = 3; in vtkCompactHyperTree()
801 this->BranchFactor = 3; in vtkCompactHyperTree()
818 int BranchFactor; member in vtkCompactHyperTree
H A DvtkHyperTreeGrid.cxx1445 this->BranchFactor = 2; in vtkHyperTreeGrid()
1565 os << indent << "BranchFactor: " << this->BranchFactor << endl; in PrintSelf()
1650 this->BranchFactor = htg->BranchFactor; in CopyStructure()
1852 this->NumberOfChildren = this->BranchFactor; in SetDimension()
1855 this->NumberOfChildren *= this->BranchFactor; in SetDimension()
1865 if ( this->BranchFactor == factor ) in SetBranchFactor()
1869 this->BranchFactor = factor; in SetBranchFactor()
1872 this->NumberOfChildren = this->BranchFactor; in SetBranchFactor()
1875 this->NumberOfChildren *= this->BranchFactor; in SetBranchFactor()
2400 this->BranchFactor = htg->BranchFactor; in DeepCopy()
[all …]
H A DvtkHyperTreeGrid.h150 vtkGetMacro(BranchFactor, unsigned int);
711 unsigned int BranchFactor; // 2 or 3 variable
/dports/math/vtk9/VTK-9.1.0/Filters/HyperTree/
H A DvtkHyperTreeGridGeometry.cxx73 this->BranchFactor = 0; in vtkHyperTreeGridGeometry()
287 this->BranchFactor = static_cast<int>(input->GetBranchFactor()); in ProcessTrees()
559 int iMin = (f == 0 && o == 1) ? this->BranchFactor - 1 : 0; in RecursivelyProcessTree3D()
560 int iMax = (f == 0 && o == 0) ? 1 : this->BranchFactor; in RecursivelyProcessTree3D()
561 int jMin = (f == 1 && o == 1) ? this->BranchFactor - 1 : 0; in RecursivelyProcessTree3D()
562 int jMax = (f == 1 && o == 0) ? 1 : this->BranchFactor; in RecursivelyProcessTree3D()
563 int kMin = (f == 2 && o == 1) ? this->BranchFactor - 1 : 0; in RecursivelyProcessTree3D()
564 int kMax = (f == 2 && o == 0) ? 1 : this->BranchFactor; in RecursivelyProcessTree3D()
571 unsigned int ichild = i + this->BranchFactor * (j + this->BranchFactor * k); in RecursivelyProcessTree3D()
H A DvtkHyperTreeGridEvaluateCoarse.cxx40 this->BranchFactor = 0; in vtkHyperTreeGridEvaluateCoarse()
84 this->BranchFactor = output->GetBranchFactor(); in ProcessTrees()
86 this->SplattingFactor = std::pow(this->BranchFactor, this->Dimension - 1); in ProcessTrees()
H A DvtkHyperTreeGridEvaluateCoarse.h168 unsigned int BranchFactor; variable
H A DvtkHyperTreeGridGeometry.h133 int BranchFactor; variable