|
enum class | operation_t : int {
addition
, subtraction
, multiplication
, division
,
dot
} |
|
template<typename Lhs , typename Rhs , typename Op > |
using | op_field = binary_operation_field< Lhs, Rhs, Op > |
|
template<size_t LhsN, size_t RhsN, typename Op > |
using | op_field_vec_vec = binary_operation_field< polymorphic::vectorfield< real_type, LhsN > *, polymorphic::vectorfield< real_type, RhsN > *, Op > |
|
template<size_t LhsN, size_t RhsN, typename Op > |
using | op_field_mat_vec = binary_operation_field< polymorphic::matrixfield< real_type, LhsN > *, polymorphic::vectorfield< real_type, RhsN > *, Op > |
|
template<size_t N> |
using | mat_vec_mult_field_t = op_field_mat_vec< N, N, decltype(mult)> |
|
using | mat_vec_mult_field2_t = mat_vec_mult_field_t< 2 > |
|
using | mat_vec_mult_field3_t = mat_vec_mult_field_t< 3 > |
|
template<size_t N> |
using | dot_field_t = op_field_vec_vec< N, N, decltype(dot)> |
|
using | dot_field2_t = dot_field_t< 2 > |
|
using | dot_field3_t = dot_field_t< 3 > |
|
using | serializer_t = node_serializer< binary_operation > |
|
|
| binary_operation (flowexplorer::scene &s) |
|
virtual | ~binary_operation ()=default |
|
auto | draw_properties () -> bool override |
|
auto | on_property_changed () -> void override |
|
auto | on_pin_connected (ui::input_pin &, ui::output_pin &) -> void override |
|
auto | on_pin_disconnected (ui::input_pin &) -> void override |
|
auto | deactivate_output_pins () -> void |
|
auto | serialize () const -> toml::table override final |
|
auto | deserialize (toml::table const &serialized_node) -> void override |
|
auto | draw_properties () -> bool override |
|
auto | type_name () const -> std::string_view override final |
|
| node (flowexplorer::scene &s) |
|
| node (std::string const &title, flowexplorer::scene &s) |
|
template<typename T > |
| node (flowexplorer::scene &s, T &ref) |
|
template<typename T > |
| node (std::string const &title, flowexplorer::scene &s, T &ref) |
|
virtual | ~node ()=default |
|
template<typename... Ts> |
auto | insert_input_pin (std::string const &title, icon_type const t=icon_type::flow) -> auto & |
|
template<typename Prop > |
auto | insert_input_pin_property_link (input_pin &pin, Prop &prop) -> auto & |
|
template<typename T > |
auto | insert_output_pin (std::string const &title, T &ref, icon_type const t=icon_type::flow) -> auto & |
|
auto | title () const -> auto const & |
|
auto | title () -> auto & |
|
auto | scene () const -> auto const & |
|
auto | scene () -> auto & |
|
auto | set_title (std::string const &title) |
|
auto | has_self_pin () const -> bool |
|
auto | self_pin () const -> auto const & |
|
auto | self_pin () -> auto & |
|
auto | input_pins () const -> auto const & |
|
auto | input_pins () -> auto & |
|
auto | output_pins () const -> auto const & |
|
auto | output_pins () -> auto & |
|
auto | draw_node () -> void |
|
auto | node_position () const -> ImVec2 |
|
auto | notify_property_changed (bool const notify_self=true) -> void |
|
auto | update_property_links () -> void |
|
virtual auto | draw_properties () -> bool=0 |
|
virtual auto | on_property_changed () -> void |
|
virtual auto | on_title_changed (std::string const &) -> void |
|
virtual auto | on_pin_connected (input_pin &, output_pin &) -> void |
|
virtual auto | on_pin_connected (output_pin &, input_pin &) -> void |
|
virtual auto | on_pin_disconnected (input_pin &) -> void |
|
virtual auto | on_pin_disconnected (output_pin &) -> void |
|
virtual auto | type_name () const -> std::string_view=0 |
|
virtual auto | update (std::chrono::duration< double > const &) -> void |
|
virtual auto | on_path_selected (std::string const &) -> void |
|
| uuid_holder (size_t const id) |
|
| uuid_holder (ax::NodeEditor::NodeId const &id) |
|
| uuid_holder () |
|
auto | get_id () const -> const auto & |
|
auto | get_id () -> auto & |
|
auto | get_id_number () const |
|
auto | set_id (size_t const new_id) |
|
constexpr auto | operator== (uuid_holder< ax::NodeEditor::NodeId > const &other) const -> bool |
|
constexpr auto | operator== (ax::NodeEditor::NodeId const &id) const -> bool |
|
constexpr auto | operator== (size_t const id) const -> bool |
|
constexpr auto | equals () |
|
virtual auto | serialize () const -> toml::table=0 |
|
virtual void | deserialize (toml::table const &)=0 |
|
constexpr | toggleable (bool active=true) |
|
constexpr | toggleable (toggleable const &)=default |
|
constexpr | toggleable (toggleable &&)=default |
|
constexpr auto | operator= (toggleable const &) -> toggleable &=default |
|
constexpr auto | operator= (toggleable &&) -> toggleable &=default |
|
| ~toggleable ()=default |
|
virtual constexpr auto | set_active (bool active=true) -> void |
|
constexpr auto | activate () -> void |
|
constexpr auto | deactivate () -> void |
|
constexpr auto | toggle () -> void |
|
constexpr auto | is_active () const -> bool const & |
|
constexpr auto | is_active () -> bool & |
|
auto | serialize (T const &t) const -> toml::table |
|
auto | deserialize (T &t, toml::table const &serialized_node) -> void |
|
auto | draw_properties (T &t) -> bool |
|
constexpr auto | type_name () const -> std::string_view |
|