This file contains 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
class ofColorHSVA{ | |
public: | |
ofColorHSVA(){ | |
h = 255; | |
s = 255; | |
v = 255; | |
a = 255; | |
} | |
virtual ~ofColorHSVA(){} |
This file contains 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
1959 Arturo Castro | |
675 Theodore Watson | |
436 Kyle McDonald | |
262 Zachary Lieberman | |
166 Mehmet Akten | |
93 Lukasz Karluk | |
72 stefan | |
67 Todd Vanderlin | |
61 Jonathan Brodsky | |
60 Keith Pasko |
This file contains 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
// Correct | |
#ifdef WIN32 | |
#define IS_WIN32 | |
#endif | |
#ifndef TARGET_LINUX | |
doSomething(); | |
#define TARGET_LINUX | |
#endif |
This file contains 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
Style script for all of OF | |
Running styler on OF core | |
Styling file ../../../libs/openFrameworks/3d/of3dUtils.h | |
Styling file ../../../libs/openFrameworks/3d/ofCamera.h | |
Styling file ../../../libs/openFrameworks/3d/ofEasyCam.h | |
Styling file ../../../libs/openFrameworks/3d/ofMesh.h | |
Styling file ../../../libs/openFrameworks/3d/ofNode.h |
This file contains 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
diff --git a/dev-openFrameworks/examples/3d/modelNoiseExample/modelNoiseExample.cbp b/pierre-openFrameworks/examples/3d/modelNoiseExample/modelNoiseExample.cbp | |
index 4c960de..25bdf23 100644 | |
--- a/dev-openFrameworks/examples/3d/modelNoiseExample/modelNoiseExample.cbp | |
+++ b/pierre-openFrameworks/examples/3d/modelNoiseExample/modelNoiseExample.cbp | |
@@ -144,12 +144,6 @@ | |
<Unit filename="../../../addons/ofxAssimpModelLoader/src/ofxAssimpModelLoader.h"> | |
<Option virtualFolder="addons/ofxAssimpModelLoader/src" /> | |
</Unit> | |
- <Unit filename="../../../addons/ofxAssimpModelLoader/libs/assimp/include/Compiler/poppack1.h"> | |
- <Option virtualFolder="addons/ofxAssimpModelLoader/libs/assimp/include/Compiler" /> |
This file contains 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
# Get list of closed issues since a certain date | |
# Best pipe the results into a file and view with something tab-sensitive | |
from github import Github | |
import datetime | |
G = Github() | |
Repo=G.get_user('openframeworks').get_repo('openFrameworks') | |
Closed_Issues=Repo.get_issues(state='closed') | |
startdate=datetime.datetime(2012,5,28,0,0) # date of OF 0071 release |
This file contains 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
Description Resource Path Location Type | |
narrowing conversion of '((ofxTCPManager*)this)->ofxTCPManager::m_dwTimeoutSend' from 'long unsigned int' to '__time_t {aka long int}' inside { } is ill-formed in C++11 [-Wnarrowing] ofxTCPManager.cpp /addons/ofxNetwork/src line 301 C/C++ Problem | |
narrowing conversion of '((ofxTCPManager*)this)->ofxTCPManager::m_dwTimeoutSend' from 'long unsigned int' to '__time_t {aka long int}' inside { } is ill-formed in C++11 [-Wnarrowing] ofxTCPManager.cpp /addons/ofxNetwork/src line 260 C/C++ Problem | |
narrowing conversion of '((ofxTCPManager*)this)->ofxTCPManager::m_dwTimeoutSend' from 'long unsigned int' to '__time_t {aka long int}' inside { } is ill-formed in C++11 [-Wnarrowing] ofxTCPManager.cpp /addons/ofxNetwork/src line 328 C/C++ Problem | |
missing braces around initializer for '__fd_mask [16] {aka long int [16]}' [-Wmissing-braces] ofxTCPManager.cpp /addons/ofxNetwork/src line 128 C/C++ Problem | |
narrowing conversion of '((ofxTCPManager*)this)->ofxTCPManager::m_dwTimeoutSend' fro |
This file contains 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
## Code style Gist for [PR 1](https://github.com/bilderbuchi/openFrameworks/pull/1) | |
The `.patch` file below contains the necessary changes for making sure your PR conforms to the [OF code style](https://github.com/openframeworks/openFrameworks/wiki/oF-code-style). | |
### Usage | |
Download the patch file via the Download button on the left (to make sure all formatting is preserved). Apply the patch to the clean tip of your PR branch with `git apply --index --whitespace=nowarn <patchfile>`. The changes will land in your git staging area, ready to commit. | |
Before that, you can test if the patch succeeds with `git apply --index --whitespace=nowarn --check <patchfile>` | |
If you have problems, comment in the PR. |
This file contains 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
## Code style Gist for [PR 1](https://github.com/bilderbuchi/openFrameworks/pull/1) | |
The `.patch` file below contains the necessary changes for making sure your PR conforms to the [OF code style](https://github.com/openframeworks/openFrameworks/wiki/oF-code-style). | |
### Usage | |
Download the patch file via the Download button on the left (to make sure all formatting is preserved). Apply the patch to the clean tip of your PR branch with `git apply --index --whitespace=nowarn <patchfile>`. The changes will land in your git staging area, ready to commit. | |
Before that, you can test if the patch succeeds with `git apply --index --whitespace=nowarn --check <patchfile>` | |
If you have problems, comment in the PR. |
OlderNewer