Tatooine
Public Member Functions | Public Attributes | List of all members
tatooine::flowexplorer::nodes::autonomous_particles_flowmap Struct Reference

#include <autonomous_particles_flowmap.h>

Inheritance diagram for tatooine::flowexplorer::nodes::autonomous_particles_flowmap:
[legend]
Collaboration diagram for tatooine::flowexplorer::nodes::autonomous_particles_flowmap:
[legend]

Public Member Functions

 autonomous_particles_flowmap (flowexplorer::scene &s)
 
virtual ~autonomous_particles_flowmap ()=default
 
auto draw_properties () -> bool override
 
auto load (filesystem::path const &path) -> void
 
auto render (mat4f const &P, mat4f const &V) -> void override
 
bool is_transparent () const override
 
auto data_available () const -> bool
 
auto mesh () const -> auto const &
 
- Public Member Functions inherited from tatooine::flowexplorer::renderable< autonomous_particles_flowmap >
auto serialize () const -> toml::table override
 
auto deserialize (toml::table const &serialization) -> void override
 
auto draw_properties () -> bool override
 
auto type_name () const -> std::string_view override
 
- Public Member Functions inherited from tatooine::flowexplorer::base::renderable
 renderable (std::string const &title, flowexplorer::scene &s)
 
template<typename T >
 renderable (std::string const &title, flowexplorer::scene &s, T &ref)
 
 renderable (renderable const &w)=delete
 
 renderable (renderable &&w) noexcept=delete
 
auto operator= (renderable const &w) -> renderable &=delete
 
auto operator= (renderable &&w) noexcept -> renderable &=delete
 
virtual ~renderable ()=default
 
virtual auto render (mat4f const &projection_matrix, mat4f const &view_matrix) -> void=0
 
virtual auto is_transparent () const -> bool
 
virtual auto on_mouse_drag (int, int) -> bool
 
auto on_mouse_clicked () -> void
 
auto on_mouse_released () -> void
 
auto is_picked () -> bool
 
virtual auto check_intersection (ray< float, 3 > const &) const -> std::optional< intersection< double, 3 > >
 
- Public Member Functions inherited from tatooine::flowexplorer::ui::base::node
 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
 
- Public Member Functions inherited from tatooine::flowexplorer::uuid_holder< ax::NodeEditor::NodeId >
 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
 
- Public Member Functions inherited from tatooine::flowexplorer::toggleable
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 &
 
- Public Member Functions inherited from tatooine::flowexplorer::ui::node_serializer< T >
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
 

Public Attributes

std::string m_currently_read_path
 
std::unique_ptr< unstructured_triangular_grid< double, 2 > > m_mesh
 
gl::indexeddata< vec3fm_edges
 
int m_line_width = 1
 
std::array< GLfloat, 4 > m_line_color {0.0f, 0.0f, 0.0f, 1.0f}
 
- Public Attributes inherited from tatooine::flowexplorer::base::renderable
bool m_picked = false
 

Additional Inherited Members

- Public Types inherited from tatooine::flowexplorer::renderable< autonomous_particles_flowmap >
using serializer_t = ui::node_serializer< autonomous_particles_flowmap >
 

Constructor & Destructor Documentation

◆ autonomous_particles_flowmap()

◆ ~autonomous_particles_flowmap()

virtual tatooine::flowexplorer::nodes::autonomous_particles_flowmap::~autonomous_particles_flowmap ( )
virtualdefault

Member Function Documentation

◆ data_available()

auto tatooine::flowexplorer::nodes::autonomous_particles_flowmap::data_available ( ) const -> bool
inline

◆ draw_properties()

auto tatooine::flowexplorer::nodes::autonomous_particles_flowmap::draw_properties ( ) -> bool
inlineoverridevirtual

◆ is_transparent()

bool tatooine::flowexplorer::nodes::autonomous_particles_flowmap::is_transparent ( ) const
inlineoverridevirtual

◆ load()

auto tatooine::flowexplorer::nodes::autonomous_particles_flowmap::load ( filesystem::path const &  path) -> void
inline

◆ mesh()

◆ render()

auto tatooine::flowexplorer::nodes::autonomous_particles_flowmap::render ( mat4f const &  P,
mat4f const &  V 
) -> void
inlineoverridevirtual

Member Data Documentation

◆ m_currently_read_path

std::string tatooine::flowexplorer::nodes::autonomous_particles_flowmap::m_currently_read_path

◆ m_edges

gl::indexeddata<vec3f> tatooine::flowexplorer::nodes::autonomous_particles_flowmap::m_edges

◆ m_line_color

std::array<GLfloat, 4> tatooine::flowexplorer::nodes::autonomous_particles_flowmap::m_line_color {0.0f, 0.0f, 0.0f, 1.0f}

◆ m_line_width

int tatooine::flowexplorer::nodes::autonomous_particles_flowmap::m_line_width = 1

◆ m_mesh

std::unique_ptr<unstructured_triangular_grid<double, 2> > tatooine::flowexplorer::nodes::autonomous_particles_flowmap::m_mesh

The documentation for this struct was generated from the following file: