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/RpVtkDataSet.h

    r2393 r2402  
    4949    bool setActiveVectors(const char *name);
    5050
    51     void getDataRange(double minmax[2]) const;
     51    void getScalarRange(double minmax[2]) const;
    5252
    53     void getDataRange(double minmax[2], const char *fieldName) const;
     53    //void getDataRange(double minmax[2]) const;
    5454
    55     void getVectorMagnitudeRange(double minmax[2]) const;
     55    void getDataRange(double minmax[2], const char *fieldName, int component = -1) const;
    5656
    57     void getVectorComponentRange(double minmax[2], int component) const;
     57    void getVectorRange(double minmax[2], int component = -1) const;
    5858
    5959    void getBounds(double bounds[6]) const;
     60
     61    void getCellSizeRange(double minmax[6], double *average) const;
    6062
    6163    double getDataValue(double x, double y, double z) const;
     
    6769private:
    6870    DataSet();
     71    void print() const;
    6972
    7073    std::string _name;
Note: See TracChangeset for help on using the changeset viewer.