OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
math_expression.hpp
1#pragma once
2#include <ossia/detail/config.hpp>
3
4#include <ossia/network/value/value.hpp>
5
6#include <string>
7#include <vector>
8
9namespace ossia
10{
11class OSSIA_EXPORT math_expression
12{
13public:
14 math_expression();
15 ~math_expression();
16
17 void seed_random(uint64_t seed1, uint64_t seed2);
18 void add_variable(const std::string& var, double& value);
19 void add_constant(const std::string& var, double& value);
20 void add_vector(const std::string& var, std::vector<double>& value);
21 void rebase_vector(const std::string& var, std::vector<double>& value);
22 void add_constants();
23 void register_symbol_table();
24
25 bool set_expression(const std::string& expr);
26 bool recompile();
27
28 bool has_variable(std::string_view var) const noexcept;
29 std::string error() const;
30
31 double value();
32
33 ossia::value result();
34
35private:
36 math_expression(const math_expression&) = delete;
37 math_expression(math_expression&&) = delete;
38 math_expression& operator=(const math_expression&) = delete;
39 math_expression& operator=(math_expression&&) = delete;
40
41 struct impl;
42 impl* impl{};
43};
44}
The value class.
Definition value.hpp:173
Definition git_info.h:7