------------------------------------------------------------------------------
| 905 | |
| 906 | //------------------------------------------------------------------------------ |
| 907 | vtkIdType vtkHyperTreeGridGeometry3DImpl::InsertUniquePoint(HTG3DPoint& point) |
| 908 | { |
| 909 | if (point.IsValid && point.Id < 0) |
| 910 | { |
| 911 | // Insert a point |
| 912 | if (this->Locator) |
| 913 | { |
| 914 | this->Locator->InsertUniquePoint(point.Coords, point.Id); |
| 915 | } |
| 916 | else |
| 917 | { |
| 918 | point.Id = this->OutPoints->InsertNextPoint(point.Coords); |
| 919 | } |
| 920 | } |
| 921 | return point.Id; |
| 922 | } |
| 923 | |
| 924 | //---------------------------------------------------------------------------------------------- |
| 925 | bool vtkHyperTreeGridGeometry3DImpl::GetHasInterface(vtkIdType cellId) const |
no test coverage detected