Difference between revisions of "Developer Meetings/20130122"

From Slicer Wiki
Jump to: navigation, search
Line 21: Line 21:
 
** Failed to set the AA at runtime using python.
 
** Failed to set the AA at runtime using python.
 
** See http://www.vtk.org/doc/nightly/html/classvtkRenderWindow.html#ab65de98e425838230cbd5760bcda4457
 
** See http://www.vtk.org/doc/nightly/html/classvtkRenderWindow.html#ab65de98e425838230cbd5760bcda4457
 +
To reproduce in slicer python console:
 +
<pre>
 +
>>> lm = slicer.app.layoutManager()
 +
>>> w = lm.threeDWidget(0)
 +
>>> v = w.threeDView()
 +
>>> rw = v.renderWindow()
 +
>>> rw.SetAAFrames(5)
 +
</pre>
 
* Icon for the launcher
 
* Icon for the launcher
 
** Talk to Chris so that he can work on issue.
 
** Talk to Chris so that he can work on issue.
 
* Tube thickness for tractography added as a feature request http://na-mic.org/Bug/view.php?id=2880
 
* Tube thickness for tractography added as a feature request http://na-mic.org/Bug/view.php?id=2880

Revision as of 22:03, 22 January 2013

Home < Developer Meetings < 20130122

To discuss

Conclusion

  • Described the DisplayableManager architecture to Laurent
    • To be able to implement what Laurent would like to do, re-using the ruler annotation would be the way to go. Nicole and Julien discussed what could the approach and the amount of worked required to enable the ruler. See vtkMRMLAnnotationDisplayableManager.cxx line 694
  • OpenSuse build issue
    • Sankhesh couldn't reproduce the issue in a virtual box. This would be re-addressed later.
  • Discussed Pre/Post multiplication with Sankhesh, Alex and Steve
    • Steve: Sliders in the transform modules allow to perform operation on the transform matrix and don't especially represent the current state of the matrix.
  • Discuss anti-aliasing issue

To reproduce in slicer python console:

>>> lm = slicer.app.layoutManager()
>>> w = lm.threeDWidget(0)
>>> v = w.threeDView()
>>> rw = v.renderWindow()
>>> rw.SetAAFrames(5)