とりあえずこの辺り使ってやってみたいなと思ったのをざっと書き出し。
- webpack
- yarn
- react
- typescript
- scss
| fileSave( output_obj:Object ) { | |
| let saveFileOptions = { | |
| suggestedName: "xxxxxx.json", | |
| types: [ | |
| { | |
| description: "JSON Files", | |
| accept: { | |
| "application/json": [".json"], | |
| }, | |
| }, |
| #include "ofMain.h" | |
| #include "BuildSetting.h" | |
| #define BUFFER_OFFSET(bytes) ((GLubyte *)NULL + (bytes)) | |
| #define countof(array) (sizeof(array)/sizeof((array)[0])) | |
| class ofApp : public ofBaseApp | |
| { | |
| GLuint buffers[2]; // vert+normal+texcord, index |
| #!/bin/zsh | |
| # ============================================================================= | |
| # macOS 15 Sequoia / Apple Silicon - Exhibition Machine Setup Script | |
| # ============================================================================= | |
| # | |
| # Author: rettuce (Original: 2015, Updated: 2025) | |
| # Target: macOS 15 (Sequoia) or later, Apple Silicon only | |
| # Purpose: Configure Mac for unattended exhibition/kiosk use | |
| # | |
| # Usage: |
| #include "ofMain.h" | |
| #include "ofxJSON.h" | |
| #include "ofxHttpUtils.h" | |
| struct GData{ | |
| public: | |
| string description; | |
| float score; | |
| }; |
| #include "ofMain.h" | |
| #include "ofxSequenceExport.h" | |
| const unsigned int WIDTH = 1920; | |
| const unsigned int HEIGHT = 1080; | |
| class ofApp : public ofBaseApp | |
| { | |
| ofxSequenceExport expo; |
| #include "ofMain.h" | |
| #include "ofxSyphon.h" | |
| const unsigned int WIDTH = 1920; | |
| const unsigned int HEIGHT = 1080; | |
| class ofApp : public ofBaseApp | |
| { | |
| ofVideoGrabber video; | |
| ofxSyphonServer mainOutputSyphonServer; |
| #include "testApp.h" | |
| #include "ofxUI.h" | |
| #include "ofxOpenCv.h" | |
| #define TITLE "sketch wonderful ver.000" | |
| ofVideoPlayer video; | |
| ofxCvColorImage ofxSrcVid,ofxDstVid; // 画像取得用、描画用 | |
| IplImage *srcVid, *dstVid, *markersVid; |