Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

solinewidthelement(3) [debian man page]

SoLineWidthElement(3)						       Coin						     SoLineWidthElement(3)

NAME
SoLineWidthElement - The SoLineWidthElement class changes the linewidth setting of the render state. Requests from the scenegraph to change the linewidth when rendering line primitives will be made through this element, which forwards it to the appropriate native call in the underlying rendering library. SYNOPSIS
#include <Inventor/elements/SoLineWidthElement.h> Inherits SoFloatElement. Inherited by SoGLLineWidthElement. Public Member Functions virtual void init (SoState *state) Static Public Member Functions static SoType getClassTypeId (void) static int getClassStackIndex (void) static void * createInstance (void) static void initClass (void) static void set (SoState *const state, SoNode *const node, const float lineWidth) static void set (SoState *const state, const float lineWidth) static float get (SoState *const state) static float getDefault () Protected Member Functions virtual ~SoLineWidthElement () Additional Inherited Members Detailed Description The SoLineWidthElement class changes the linewidth setting of the render state. Requests from the scenegraph to change the linewidth when rendering line primitives will be made through this element, which forwards it to the appropriate native call in the underlying rendering library. Subsequent nodes rendering line primitives will use the width setting (for instance SoLineSet nodes). Constructor &; Destructor Documentation SoLineWidthElement::~SoLineWidthElement () [protected], [virtual] Destructor. Member Function Documentation SoType SoLineWidthElement::getClassTypeId (void) [static] This static method returns the class type. Reimplemented from SoFloatElement. Reimplemented in SoGLLineWidthElement. int SoLineWidthElement::getClassStackIndex (void) [static] This static method returns the state stack index for the class. Reimplemented from SoFloatElement. Reimplemented in SoGLLineWidthElement. void * SoLineWidthElement::createInstance (void) [static] This API member is considered internal to the library, as it is not likely to be of interest to the application programmer. Reimplemented in SoGLLineWidthElement. void SoLineWidthElement::initClass (void) [static] Initialize relevant common data for all instances, like the type system. Reimplemented from SoFloatElement. Reimplemented in SoGLLineWidthElement. void SoLineWidthElement::init (SoState *state) [virtual] This function initializes the element type in the given SoState. It is called for the first element of each enabled element type in SoState objects. Reimplemented from SoFloatElement. Reimplemented in SoGLLineWidthElement. void SoLineWidthElement::set (SoState *conststate, SoNode *constnode, const floatlineWidth) [static] Set up the current state's lineWidth value. void SoLineWidthElement::set (SoState *conststate, const floatlineWidth) [static] Set up the current state's lineWidth value. float SoLineWidthElement::get (SoState *conststate) [static] Returns the current line width value. float SoLineWidthElement::getDefault (void) [static] Returns the default linewidth value if no value has been set explicitly. Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 SoLineWidthElement(3)

Check Out this Related Man Page

SoFloatElement(3)						       Coin							 SoFloatElement(3)

NAME
SoFloatElement - SoFloatElement is an abstract base class for elements that consists of a single float value. This is the superclass of elements where the new element data replaces the old data, and where the data the element stores is a simple single precision floating point value. SYNOPSIS
#include <Inventor/elements/SoFloatElement.h> Inherits SoElement. Inherited by SoComplexityElement, SoCreaseAngleElement, SoDecimationPercentageElement, SoFocalDistanceElement, SoFontSizeElement, SoLineWidthElement, SoListenerGainElement, SoPointSizeElement, and SoTextureQualityElement. Public Member Functions virtual void init (SoState *state) virtual SbBool matches (const SoElement *element) const virtual SoElement * copyMatchInfo (void) const virtual void print (FILE *file) const virtual void setElt (float value) Static Public Member Functions static SoType getClassTypeId (void) static int getClassStackIndex (void) static void initClass (void) static void set (const int stackIndex, SoState *const state, SoNode *const node, const float value) static void set (const int stackIndex, SoState *const state, const float value) static float get (const int stackIndex, SoState *const state) Protected Member Functions virtual ~SoFloatElement () Protected Attributes float data Additional Inherited Members Detailed Description SoFloatElement is an abstract base class for elements that consists of a single float value. This is the superclass of elements where the new element data replaces the old data, and where the data the element stores is a simple single precision floating point value. This element is like a convenient light-weight version of the SoReplacedElement. It differs from the SoReplacedElement in that the set() and get() methods are already implemented, since it is known that subclasses will still contain just a single float value. See also: SoReplacedElement, SoInt32Element, SoAccumulatedElement Constructor &; Destructor Documentation SoFloatElement::~SoFloatElement (void) [protected], [virtual] Destructor. Member Function Documentation SoType SoFloatElement::getClassTypeId (void) [static] This static method returns the class type. Reimplemented from SoElement. Reimplemented in SoGLPointSizeElement, SoComplexityElement, SoCreaseAngleElement, SoDecimationPercentageElement, SoFocalDistanceElement, SoFontSizeElement, SoGLLineWidthElement, SoLineWidthElement, SoListenerGainElement, SoPointSizeElement, and SoTextureQualityElement. int SoFloatElement::getClassStackIndex (void) [static] This static method returns the state stack index for the class. Reimplemented from SoElement. Reimplemented in SoGLPointSizeElement, SoComplexityElement, SoCreaseAngleElement, SoDecimationPercentageElement, SoFocalDistanceElement, SoFontSizeElement, SoGLLineWidthElement, SoLineWidthElement, SoListenerGainElement, SoPointSizeElement, and SoTextureQualityElement. void SoFloatElement::initClass (void) [static] Initialize relevant common data for all instances, like the type system. Reimplemented from SoElement. Reimplemented in SoGLPointSizeElement, SoComplexityElement, SoCreaseAngleElement, SoDecimationPercentageElement, SoFocalDistanceElement, SoFontSizeElement, SoGLLineWidthElement, SoLineWidthElement, SoListenerGainElement, SoPointSizeElement, and SoTextureQualityElement. void SoFloatElement::init (SoState *state) [virtual] This function initializes the element type in the given SoState. It is called for the first element of each enabled element type in SoState objects. Reimplemented from SoElement. Reimplemented in SoGLPointSizeElement, SoComplexityElement, SoCreaseAngleElement, SoDecimationPercentageElement, SoFocalDistanceElement, SoFontSizeElement, SoGLLineWidthElement, SoLineWidthElement, SoListenerGainElement, SoPointSizeElement, and SoTextureQualityElement. SbBool SoFloatElement::matches (const SoElement *element) const [virtual] This function returns TRUE is the element matches another element (of the same class), with respect to cache validity. If the application programmer's extension element has a matches() function, it should also have a copyMatchInfo() function. Implements SoElement. SoElement * SoFloatElement::copyMatchInfo (void) const [virtual] This function creates a copy of the element that contains enough information to enable the matches() function to work. Used to help with scenegraph traversal caching operations. Implements SoElement. void SoFloatElement::print (FILE *file) const [virtual] This function is for printing element information, and is used mostly for debugging purposes. Reimplemented from SoElement. void SoFloatElement::set (const intstackIndex, SoState *conststate, const floatvalue) [static] Static method for setting the value of an element in the given state at the given stackIndex. float SoFloatElement::get (const intindex, SoState *conststate) [static] Static method to fetch the value of the element of this type from the given state at the given stack index. void SoFloatElement::setElt (floatvalue) [virtual] Set element value. Reimplemented in SoGLPointSizeElement, and SoGLLineWidthElement. Member Data Documentation float SoFloatElement::data [protected] The element's value. Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 SoFloatElement(3)
Man Page