This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #pragma once | |
| #include "ofAppRunner.h" | |
| /* [Note] | |
| if you use ImGui, add bellow after .begin() not to control mouse by ImGui. | |
| `ImGui::GetIO().ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange;` | |
| */ | |
| inline void updateMouse(int mouseX, int mouseY, float hideTimef = 1.0) { | |
| glm::vec2 cursorPos(mouseX, mouseY); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| ofxNotion | |
| by shugohirao | |
| simply use to send Notion for e.g. log | |
| doc : https://shiyuugo.notion.site/ofxNotion-91b51c9d9fee458e94c1e9261dc7b294?pvs=4 | |
| */ | |
| #pragma once | |
| #include "ofMain.h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #pragma once | |
| #include "ofLog.h" | |
| #include "ofVectorMath.h" | |
| #include "GLFW/glfw3.h" | |
| namespace ofxMonitorUtils { | |
| struct MonitorInfo { | |
| int index; | |
| std::string name; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #pragma once | |
| #include "ofURLFileLoader.h" | |
| #include "ofFileUtils.h" | |
| #include "ofUtils.h" | |
| namespace ofxUnsplash { | |
| string AccessKey; | |
| inline void setupAccessKey(const string& accessKey) { | |
| AccessKey = accessKey; |
OlderNewer