Jelajahi Sumber

clean-up, readme, license, True to true

Juan Carlos 6 tahun lalu
induk
melakukan
b5fac1aafe
5 mengubah file dengan 147 tambahan dan 43 penghapusan
  1. 144 0
      .gitignore
  2. 0 17
      example/Project.xcconfig
  3. 0 22
      example/openFrameworks-Info.plist
  4. 0 1
      readme.md
  5. 3 3
      src/ofxPlotter.cpp

+ 144 - 0
.gitignore

@@ -0,0 +1,144 @@
+#########################
+# openFrameworks patterns
+#########################
+
+# build files
+openFrameworks.a
+openFrameworksDebug.a
+openFrameworksUniversal.a
+libs/openFrameworksCompiled/lib/*/*
+!libs/openFrameworksCompiled/lib/*/.gitkeep
+
+# apothecary
+scripts/apothecary/build
+
+# rule to avoid non-official addons going into git
+# see addons/.gitignore
+addons/*
+
+# rule to avoid non-official apps going into git
+# see apps/.gitignore
+apps/*
+
+# also, see example/.gitignore
+
+#########################
+# general
+#########################
+
+[Bb]uild/
+[Oo]bj/
+*.o
+example/**/[Dd]ebug*/
+example/**/[Rr]elease*/
+example/**/gcc-debug/
+example/**/gcc-release/
+example/obj/
+example/bin/*
+tests/**/[Dd]ebug*/
+tests/**/[Rr]elease*/
+tests/**/gcc-debug/
+tests/**/gcc-release/
+*.mode*
+*.app/
+*.pyc
+.svn/
+*.log
+*.cpp.eep
+*.cpp.elf
+*.cpp.hex
+
+#########################
+# IDE
+#########################
+
+# XCode
+*.pbxuser
+*.perspective
+*.perspectivev3
+*.mode1v3
+*.mode2v3
+# XCode 4
+xcuserdata
+*.xcworkspace
+
+# Code::Blocks
+*.depend
+*.layout
+
+# Visual Studio
+*.sdf
+*.opensdf
+*.suo
+*.pdb
+*.ilk
+*.aps
+ipch/
+
+# Eclipse
+.metadata
+local.properties
+.externalToolBuilders
+
+# Android Studio
+.idea
+.gradle
+gradle
+gradlew
+gradlew.bat
+
+# QtCreator
+*.qbs.user
+*.pro.user
+*.pri
+
+
+#########################
+# operating system
+#########################
+
+# Linux
+*~
+# KDE
+.directory
+.AppleDouble
+
+# OSX
+.DS_Store
+*.swp
+*~.nib
+# Thumbnails
+._*
+
+# Windows
+# Windows image file caches
+Thumbs.db
+# Folder config file
+Desktop.ini
+
+# Android
+.csettings
+/libs/openFrameworksCompiled/project/android/paths.make
+
+# Android Studio
+*.iml
+
+#########################
+# miscellaneous
+#########################
+
+.mailmap
+
+# ofxMSATensorFlow specific
+libs/tensorflow/lib/*
+build*
+*.so
+*/bin/example-*
+*/bin/*/training_data/*
+*.ckpt
+*.pb
+*.data
+checkpoint
+*.qbs.user.*
+*.tar.gz
+

+ 0 - 17
example/Project.xcconfig

@@ -1,17 +0,0 @@
-//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT.
-//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INCLUDED
-OF_PATH = ../../..
-
-//THIS HAS ALL THE HEADER AND LIBS FOR OF CORE
-#include "../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig"
-
-//ICONS - NEW IN 0072 
-ICON_NAME_DEBUG = icon-debug.icns
-ICON_NAME_RELEASE = icon.icns
-ICON_FILE_PATH = $(OF_PATH)/libs/openFrameworksCompiled/project/osx/
-
-//IF YOU WANT AN APP TO HAVE A CUSTOM ICON - PUT THEM IN YOUR DATA FOLDER AND CHANGE ICON_FILE_PATH to:
-//ICON_FILE_PATH = bin/data/
-
-OTHER_LDFLAGS = $(OF_CORE_LIBS) $(OF_CORE_FRAMEWORKS)
-HEADER_SEARCH_PATHS = $(OF_CORE_HEADERS)

+ 0 - 22
example/openFrameworks-Info.plist

@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
-	<key>CFBundleDevelopmentRegion</key>
-	<string>English</string>
-	<key>CFBundleExecutable</key>
-	<string>${EXECUTABLE_NAME}</string>
-	<key>CFBundleIdentifier</key>
-	<string>cc.openFrameworks.ofapp</string>
-	<key>CFBundleInfoDictionaryVersion</key>
-	<string>6.0</string>
-	<key>CFBundlePackageType</key>
-	<string>APPL</string>
-	<key>CFBundleSignature</key>
-	<string>????</string>
-	<key>CFBundleVersion</key>
-	<string>1.0</string>
-	<key>CFBundleIconFile</key>
-	<string>${ICON}</string>
-</dict>
-</plist>

File diff ditekan karena terlalu besar
+ 0 - 1
readme.md


+ 3 - 3
src/ofxPlotter.cpp

@@ -12,9 +12,9 @@
 
 
 ofxPlotter::dataCollection::dataCollection() :  plotColor ( ofColor(0) ) ,
-                                                autoRange ( True ),
-                                                drawOverlay ( True ),
-                                                drawInfo    ( True ),
+                                                autoRange ( true ),
+                                                drawOverlay ( true ),
+                                                drawInfo    ( true ),
                                                 plotLength ( 400 ),
                                                 maxValue ( 0 ),
                                                 minValue ( 0 ) {

Beberapa file tidak ditampilkan karena terlalu banyak file yang berubah dalam diff ini