Base class for objects rendering fields on a fiber bundle.  
More...
#include <VFieldRenderObject.hpp>
List of all members.
Public Types
Public Member Functions
- 
VFieldRenderObject (const string &name, int p, const RefPtr< VCreationPreferences > &VP, const string &field="field")
- 
override bool CreatedFilteredConnection (const RefPtr< VParameter > &SourceParam)
Detailed Description
Base class for objects rendering fields on a fiber bundle. 
- Note:
- The order of execution of construction and destruction are mirror images of each other. When a class is constructed, the order of initialization is always the same: the virtual base class subobjects first ("in the order they appear on a depth-first left-to-right traversal of the directed acyclic graph of base classes," according to the standard), followed by the immediate base classes in the order of their appearance on the base-list in the class's definition, followed by the non-static data members of the class, in the order of their declaration, followed by the body of the constructor. 
- Examples: 
- 
FragmentBoxes.cpp.