infovis
|
00001 #ifndef CRMAPPING_H 00002 #define CRMAPPING_H 00003 00004 #include "mappingrenderer.h" 00005 #include "utils.h" 00006 00012 class ComplexRootMapping : 00013 public MappingRenderer 00014 { 00015 public: 00016 ComplexRootMapping(void); 00017 ~ComplexRootMapping(void); 00018 00019 void iniRender(); 00020 void setRootFactor(float a); 00021 00022 complexD applyMapping(complexD coords); 00023 00024 private: 00025 00026 float n;// Root factor 00027 }; 00028 00029 #endif