MantisBT - VTK | |||||
| View Issue Details | |||||
| ID | Project | Category | View Status | Date Submitted | Last Update |
| 0006291 | VTK | (No Category) | public | 2008-01-31 10:51 | 2016-08-12 09:54 |
| Reporter | Jerome Robert | ||||
| Assigned To | Utkarsh Ayachit | ||||
| Priority | normal | Severity | major | Reproducibility | always |
| Status | closed | Resolution | moved | ||
| Platform | OS | OS Version | |||
| Product Version | |||||
| Target Version | Fixed in Version | ||||
| Project | |||||
| Type | |||||
| Summary | 0006291: [Regression in CVS head] Very slow with 100 vtkActor | ||||
| Description | With current CVS head, the rendering is very slow when we have more than 50 actors. It's a regression as with ParaView-3-2-1 tag it was good. | ||||
| Steps To Reproduce | |||||
| Additional Information | This java program run smoothly with ParaView-3-2-1 tag but is nearly frozen with current head. public class BugManyActor { /** Create a cone actor */ private static vtkActor createDummyActor() { vtkConeSource cone = new vtkConeSource(); cone.SetHeight(3.0); cone.SetRadius(1.0); cone.SetResolution(30); vtkPolyDataMapper map = new vtkPolyDataMapper(); map.SetInput(cone.GetOutput()); vtkActor coneActor = new vtkActor(); coneActor.SetMapper(map); return coneActor; } private static void addDummyCones(int n, int m, vtkRenderer renderer) { for (int i = 0; i < n; i++) for (int j = 0; j < m; j++) { vtkActor actor = createDummyActor(); actor.SetPosition(4 * i, 4 * j, 0); renderer.AddActor(actor); } } public static void main(String[] args) throws Exception { System.loadLibrary("vtkRenderingJava"); vtkRenderer ren1 = new vtkRenderer(); addDummyCones(33, 33, ren1); vtkRenderWindow renWin = new vtkRenderWindow(); renWin.AddRenderer(ren1); ren1.ResetCamera(); vtkRenderWindowInteractor iren = new vtkRenderWindowInteractor(); iren.SetRenderWindow(renWin); vtkInteractorStyleTrackballCamera style = new vtkInteractorStyleTrackballCamera(); iren.SetInteractorStyle(style); iren.Initialize(); iren.Start(); } } | ||||
| Tags | No tags attached. | ||||
| Relationships | |||||
| Attached Files | |||||
| Issue History | |||||
| Date Modified | Username | Field | Change | ||
| 2008-01-31 10:51 | Jerome Robert | New Issue | |||
| 2008-02-06 09:31 | Jeff Baumes | Status | backlog => tabled | ||
| 2008-02-06 09:31 | Jeff Baumes | Assigned To | => Utkarsh Ayachit | ||
| 2008-04-02 05:00 | Julian Ibarz | Note Added: 0011028 | |||
| 2008-05-28 06:54 | Julian Ibarz | Note Added: 0012136 | |||
| 2011-06-16 13:11 | Zack Galbreath | Category | => (No Category) | ||
| 2016-08-12 09:54 | Kitware Robot | Note Added: 0036950 | |||
| 2016-08-12 09:54 | Kitware Robot | Status | expired => closed | ||
| 2016-08-12 09:54 | Kitware Robot | Resolution | open => moved | ||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||