MCPcopy Create free account
hub / github.com/Kitware/VTK / UpdateMaximumPointId

Method UpdateMaximumPointId

Rendering/Core/vtkHardwareSelector.cxx:624–634  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

622
623//------------------------------------------------------------------------------
624void vtkHardwareSelector::UpdateMaximumPointId(vtkIdType attribid)
625{
626 if (attribid < 0)
627 {
628 // negative attribid is valid. It happens when rendering higher order
629 // elements where new points are added for rendering smooth surfaces.
630 return;
631 }
632
633 this->MaximumPointId = (attribid > this->MaximumPointId) ? attribid : this->MaximumPointId;
634}
635
636//------------------------------------------------------------------------------
637void vtkHardwareSelector::UpdateMaximumCellGridTupleId(vtkIdType attribid)

Callers 4

PickMethod · 0.80
EndPickingMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected