Ignore:
Timestamp:
Aug 22, 2011, 2:15:12 AM (13 years ago)
Author:
ldelgass
Message:
  • Let graphics objects handle DataSet? cumulative range changes, track vectors as well as scalars, also supply cumulative ranges in setDataSet()
  • Be more consistent about naming enums and commands for vectors
  • Add constructor arguments to some graphics objects to speed initialization (eliminates some pipeline changes)
  • Apply a scale factor to glyphs based on cell sizes
  • Add line glyph shape
  • Don't delete ColorMaps? in use
  • Update graphics objects when a ColorMap? is edited
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/vizservers/vtkvis/RpMolecule.h

    r2328 r2402  
    5252    virtual void setClippingPlanes(vtkPlaneCollection *planes);
    5353
    54     void setLookupTable(vtkLookupTable *lut);
     54    void setColorMap(ColorMap *colorMap);
    5555
    56     vtkLookupTable *getLookupTable();
     56    /**
     57     * \brief Return the ColorMap in use
     58     */
     59    ColorMap *getColorMap()
     60    {
     61        return _colorMap;
     62    }
     63
     64    void updateColorMap();
     65
     66    virtual void updateRanges(bool useCumulative,
     67                              double scalarRange[2],
     68                              double vectorMagnitudeRange[2],
     69                              double vectorComponentRange[3][2]);
    5770
    5871    void setAtomScaling(AtomScaling state);
     
    7184
    7285    AtomScaling _atomScaling;
     86    ColorMap *_colorMap;
    7387
    7488    vtkSmartPointer<vtkLookupTable> _lut;
Note: See TracChangeset for help on using the changeset viewer.