OpenSim
OpenSim 3.0
|
This class manages runtime visualization of a Model that is being
manipulated through the OpenSim API. More...
#include <ModelVisualizer.h>
Public Member Functions | |
Drawing methods | |
Currently there is just a single method for generating a frame. | |
void | show (const SimTK::State &state) const |
Evaluate the geometry needed to visualize the given \a state and | |
Access to SimTK::Visualizer features | |
These methods provide access to lower-level SimTK::Visualizer objects that are used in the implementation of this ModelVisualizer. | |
const SimTK::Visualizer::InputSilo & | getInputSilo () const |
If you want to poll for user input, you'll need access to the | |
SimTK::Visualizer::InputSilo & | updInputSilo () |
Get writable access to the InputSilo so you can remove user input | |
const SimTK::Visualizer & | getSimbodyVisualizer () const |
If you want access to the underlying Simbody SimTK::Visualizer, you | |
SimTK::Visualizer & | updSimbodyVisualizer () |
If you want writable access to the underlying Simbody SimTK::Visualizer, you can get a non-const reference here, provided that you have non-const access to the ModelVisualizer. | |
Miscellaneous utilities | |
Most users will not need to use these methods. | |
const Model & | getModel () const |
Return a const reference to the Model for which this %ModelVisualizer | |
Model & | updModel () |
Return a writable reference to the Model for which this %ModelVisualizer | |
bool | findGeometryFile (const std::string &geoFile, bool &isAbsolute, SimTK::Array_< std::string > &attempts) const |
Given the name of a geometry file, this method will attempt to find it in a series of locations using the same algorithm as is done internally by the ModelVisualizer. |
Friends | |
class | Model |
This class manages runtime visualization of a Model that is being
manipulated through the OpenSim API.
You should not allocate one of these yourself; instead, call the Model's setUseVisualizer() method and let the Model allocate one for itself. You may find the defaults to be adequate, but you can also get access to the ModelVisualizer if you need it by calling the Model's getVisualizer() method.
The ModelVisualizer consults the Model's ModelDisplayHints object for instructions on what to display.
bool OpenSim::ModelVisualizer::findGeometryFile | ( | const std::string & | geoFile, |
bool & | isAbsolute, | ||
SimTK::Array_< std::string > & | attempts | ||
) | const |
Given the name of a geometry file, this method will attempt to
find it in a series of locations using the same algorithm as is done internally by the ModelVisualizer.
[in] | geoFile | Name of file to look for; can be absolute or relative path name or just a file name and the extension must be supplied. |
[out] | isAbsolute | This output parameter is set to true on return if the supplied geoFile was an absolute path name; in that case no searching was done. |
[out] | attempts | On return, this is a list of the absolute path names that were tried. If geoFile was found, attempts.back() (the last entry) is the absolute path name of geoFile. |
true
if geoFile was located and is readable.The search rule is as follows:
No attempt is made to validate the contents of the file or whether it has a supported extension; we're just looking for a file of the given name that exists and is readable.
|
inline |
If you want to poll for user input, you'll need access to the
SimTK::Visualizer::InputSilo maintained here.
Writable access is required to remove user input from the queues.
|
inline |
Return a const reference to the Model for which this %ModelVisualizer
was constructed.
|
inline |
If you want access to the underlying Simbody SimTK::Visualizer, you
can get a const reference here.
void OpenSim::ModelVisualizer::show | ( | const SimTK::State & | state | ) | const |
Evaluate the geometry needed to visualize the given \a state and
use it to generate a new image in the Visualizer window.
|
inline |
Get writable access to the InputSilo so you can remove user input
from the queues.
|
inline |
Return a writable reference to the Model for which this %ModelVisualizer
was constructed.
|
inline |
If you want writable access to the underlying Simbody SimTK::Visualizer,
you can get a non-const reference here, provided that you have non-const access to the ModelVisualizer.
|
friend |