User:Waldyrious: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
Waldyrious (talk | contribs) No edit summary |
Waldyrious (talk | contribs) No edit summary |
||
Line 7: | Line 7: | ||
* Add highlights (<code>highlight="lineNum"</code> in the <nowiki><source></nowiki> blocks) to the key lines in the [[VTK/Examples/Cxx|code samples]] ([[wikipedia:mw:Extension:SyntaxHighlight GeSHi#highlight|example]]). Use the "line" attribute to show line numbers while working on this) | * Add highlights (<code>highlight="lineNum"</code> in the <nowiki><source></nowiki> blocks) to the key lines in the [[VTK/Examples/Cxx|code samples]] ([[wikipedia:mw:Extension:SyntaxHighlight GeSHi#highlight|example]]). Use the "line" attribute to show line numbers while working on this) | ||
* Info on how the examples are organized: [[VTK/Examples/Instructions/ForAdministrators]] | * Info on how the examples are organized: [[VTK/Examples/Instructions/ForAdministrators]] | ||
== Notes == | |||
* The default interactor style is "joystick camera", but the "trackball camera" style is more usable for experimentation. To use it: | |||
vtkSmartPointer<vtkInteractorStyleTrackballCamera> style = | |||
vtkSmartPointer<vtkInteractorStyleTrackballCamera>::New(); | |||
interactor->SetInteractorStyle(style); |
Revision as of 19:33, 22 April 2016
I'm User:Waldir on Wikimedia wikis, having been an active editor since early 2005.
I live in Braga, Portugal and am currently a PhD student in Computer Generated Holography.
Todo
- Fix Special:DoubleRedirects
- Add highlights (
highlight="lineNum"
in the <source> blocks) to the key lines in the code samples (example). Use the "line" attribute to show line numbers while working on this) - Info on how the examples are organized: VTK/Examples/Instructions/ForAdministrators
Notes
- The default interactor style is "joystick camera", but the "trackball camera" style is more usable for experimentation. To use it:
vtkSmartPointer<vtkInteractorStyleTrackballCamera> style = vtkSmartPointer<vtkInteractorStyleTrackballCamera>::New(); interactor->SetInteractorStyle(style);