View Issue Details [ Jump to Notes ] | [ Print ] | ||||||||
ID | Project | Category | View Status | Date Submitted | Last Update | ||||
0011635 | VTK | (No Category) | public | 2010-12-21 06:05 | 2012-12-12 12:19 | ||||
Reporter | eliya mirov | ||||||||
Assigned To | David Gobbi | ||||||||
Priority | normal | Severity | minor | Reproducibility | always | ||||
Status | closed | Resolution | no change required | ||||||
Platform | windows | OS | win7 | OS Version | |||||
Product Version | |||||||||
Target Version | Fixed in Version | ||||||||
Summary | 0011635: FindClosestPointWithinRadius isn't wrapped by python | ||||||||
Description | FindClosestPointWithinRadius is a faster , more efficient way than FindClosestPoint but while FindClosestPoint is wrapped by python, FindClosestPointWithinRadius is not. these classes I know that uses it: vtkPointLocator, vtkOBBTree vtkOctreePointLocator , vtkAbstractCellLocator , vtkCellLocator. | ||||||||
Tags | No tags attached. | ||||||||
Project | |||||||||
Type | |||||||||
Attached Files | |||||||||
Relationships | |
Relationships |
Notes | |
(0024311) David Gobbi (developer) 2010-12-21 09:37 edited on: 2010-12-21 09:38 |
This FindClosestPointWithinRadius() method has been wrapped in the VTK development head since September 17, 2010, and will be in the VTK 5.8 release. vtkIdType FindClosestPointWithinRadius(double radius, const double x[3], double &dist2); The "dist2" parameter is passed by reference, so it must be passed a "mutable" argument from Python: d2 = vtk.mutable(0.0) pointId = locator.FindClosestPointWithinRadius(10.0, (0.0, 0.0, 0.0), d2) |
Notes |
Issue History | |||
Date Modified | Username | Field | Change |
2010-12-21 06:05 | eliya mirov | New Issue | |
2010-12-21 09:27 | David Gobbi | Assigned To | => David Gobbi |
2010-12-21 09:27 | David Gobbi | Status | backlog => tabled |
2010-12-21 09:37 | David Gobbi | Note Added: 0024311 | |
2010-12-21 09:38 | David Gobbi | Note Edited: 0024311 | |
2010-12-21 09:39 | David Gobbi | Status | tabled => @80@ |
2010-12-21 09:39 | David Gobbi | Resolution | open => no change required |
2012-12-12 12:19 | David Gobbi | Status | customer review => closed |
Issue History |
Copyright © 2000 - 2018 MantisBT Team |