feat(parameter): populate parameterPanel
This commit is contained in:
@@ -7,3 +7,9 @@ enzo::prm::Parameter::Parameter(Template prmTemplate)
|
||||
{
|
||||
std::cout << "created new parameter: " << prmTemplate.getName() << "\n";
|
||||
}
|
||||
|
||||
std::string enzo::prm::Parameter::getName() const
|
||||
{
|
||||
return template_.getName();
|
||||
}
|
||||
|
||||
|
||||
@@ -8,6 +8,7 @@ class Parameter
|
||||
{
|
||||
public:
|
||||
Parameter(Template prmTemplate);
|
||||
std::string getName() const;
|
||||
inline bt::floatT evalFloat() const {return floatValue_;}
|
||||
inline void setFloat(bt::floatT value) {floatValue_ = value;}
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user