opynsim
Unofficial C++ Documentation
Loading...
Searching...
No Matches
opynsim.h
Go to the documentation of this file.
1#pragma once
2
5
8
9#include <filesystem>
10#include <vector>
11
12namespace opyn
13{
16
21
27 bool init();
28
36 std::vector<std::filesystem::path> get_search_paths();
37
44 void prepend_search_path(std::filesystem::path search_path);
45
52 void append_search_path(std::filesystem::path search_path);
53
56 bool remove_search_path(const std::filesystem::path& search_path);
57
60 ModelSpecification read_osim(const std::filesystem::path& source);
61
64 DataFrame read_sto(const std::filesystem::path& source);
65
68 DataFrame read_mot(const std::filesystem::path& source);
69
72 DataFrame read_trc(const std::filesystem::path& source);
73
76 DataFrame read_csv(const std::filesystem::path& source);
77
80 osc::Mesh read_vtp(const std::filesystem::path& source);
81
84 osc::Mesh read_obj(const std::filesystem::path& source);
85
88 osc::Mesh read_stl(const std::filesystem::path& source);
89
92 osc::Texture2D read_png(const std::filesystem::path& source);
93
96 osc::Texture2D read_jpeg(const std::filesystem::path& source);
97
99 osc::Texture2D read_jpg(const std::filesystem::path& source);
100}
Represents a sequence of Series with optional associated metadata.
Definition data_frame.h:16
Definition model_specification.h:16
Definition mesh.h:33
Definition texture2d.h:22
Definition component_registry.h:14
std::vector< std::filesystem::path > get_search_paths()
osc::Texture2D read_png(const std::filesystem::path &source)
osc::Texture2D read_jpeg(const std::filesystem::path &source)
DataFrame read_trc(const std::filesystem::path &source)
bool remove_search_path(const std::filesystem::path &search_path)
osc::Texture2D read_jpg(const std::filesystem::path &source)
An alias for read_jpeg.
osc::Mesh read_obj(const std::filesystem::path &source)
bool init()
void set_log_level(osc::LogLevel)
void append_search_path(std::filesystem::path search_path)
DataFrame read_csv(const std::filesystem::path &source)
osc::LogLevel get_log_level()
Returns the logging level of the default global log sink that's used by all subsystems.
void prepend_search_path(std::filesystem::path search_path)
osc::Mesh read_vtp(const std::filesystem::path &source)
DataFrame read_mot(const std::filesystem::path &source)
ModelSpecification read_osim(const std::filesystem::path &source)
DataFrame read_sto(const std::filesystem::path &source)
osc::Mesh read_stl(const std::filesystem::path &source)
LogLevel
Definition log_level.h:11