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
| Binary files ../atilika-kuromoji-2131a30/.DS_Store and ../atilika-kuromoji-2131a30 2/.DS_Store differ | |
| Only in ../atilika-kuromoji-2131a30 2/: dictionary | |
| Only in ../atilika-kuromoji-2131a30 2/: enable_accents.patch | |
| diff -u -r ../atilika-kuromoji-2131a30/pom.xml ../atilika-kuromoji-2131a30 2/pom.xml | |
| --- ../atilika-kuromoji-2131a30/pom.xml 2012-05-06 07:46:56.000000000 +0900 | |
| +++ ../atilika-kuromoji-2131a30 2/pom.xml 2012-08-27 00:02:07.000000000 +0900 | |
| @@ -37,6 +37,7 @@ | |
| </developer> | |
| </developers> | |
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
| /////////////////////////////////////////////////////////////////////////////////////////////////// | |
| 知っている3Dプリンターについて | |
| * Dimension SST 768 (IAMASに置いてあるやつ) | |
| http://www.marubeni-sys.com/de/dimension/shiyou-768.html | |
| 本体価格 298万円 | |
| 積層ピッチ 0.254mm | |
| 造形サイズ W203 x D203 x H305 mm | |
| 消耗品 http://www.graphtec.co.jp/site_3d/dimension/supply.html | |
| モデリング材料 78,750円(税込み) |
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
| UDPパケットにのせるカスタムデータのフォーマット | |
| (イーサネットのMTUにあわせて1500Byte以内におさめている) | |
| ------------------------------------------------------------------------------------------------ | |
| JSON形式 | |
| *Header | |
| { | |
| "PayloadLength" : Payload部のバイト数, | |
| "Chunks" : Payloadの数, | |
| "Hash" : { "SHA256" : "PayloadにあるDataフィールドのBASE64エンコード済み文字列をすべて連結したものをSHA-256でハッシュした値" } |
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
| #include "testApp.h" | |
| #include "ofxEpilog.h" | |
| ofxEpilog epilogLaser; | |
| void testApp::setup() | |
| { | |
| OutputConfig config = OutputConfig(50, 10, 50, 10, 1000, 100); // vspeed, vpower, rspeed, rpower, dpi, freq | |
| epilogLaser.setOutputConfig(config); | |
| epilogLaser.setWorkareaSize(WorkareaSize(812, 508, 0)); // width, height, z |
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
| #include "testApp.h" | |
| //-------------------------------------------------------------- | |
| void testApp::setup(){ | |
| ofSetLogLevel(OF_LOG_VERBOSE); // For debug output | |
| // Workarea of Epilog laser fuzion | |
| WorkareaSize fusion; | |
| fusion.width = 812; | |
| fusion.height = 508; |
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
| #!/usr/bin/env python | |
| # coding:utf-8 | |
| import os | |
| import sys | |
| import xml.etree.cElementTree as ET | |
| baseFilePath = "" | |
| outputFilePath = "./" |
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
| // YCAM AMP SHIELD PIN LAYOUT | |
| // A0 - リファレンス用 | |
| // A1 - 測定値用 | |
| #include <SPI.h> | |
| #include <Ethernet.h> | |
| #include <HttpClient.h> | |
| #include <Xively.h> // DOWNLOAD FROM HERE -> https://github.com/xively/xively_arduino | |
| #define AVG_COUNT (32) |
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
| PrintWriter output; | |
| //colors | |
| color black=color(0); | |
| color white=color(255); | |
| //variables | |
| int itr; //iteration | |
| float pixBright; | |
| float maxBright=0; |
We can't make this file beautiful and searchable because it's too large.
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
| 2014-07-09 17:20:26.944475,0.35 | |
| 2014-07-09 17:21:28.129464,0.35 | |
| 2014-07-09 17:22:29.303675,0.35 | |
| 2014-07-09 17:23:30.477646,0.34 | |
| 2014-07-09 17:24:31.908925,0.34 | |
| 2014-07-09 17:25:33.113254,0.35 | |
| 2014-07-09 17:26:34.285212,0.35 | |
| 2014-07-09 17:27:35.485608,0.33 | |
| 2014-07-09 17:28:36.677007,0.33 | |
| 2014-07-09 17:29:37.844691,0.34 |
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
| /* | |
| ModelbuilderMk2 - UGeo_Cylinder.pde | |
| Marius Watz - http://workshop.evolutionzone.com | |
| Creates a cylinder mesh using UGeo.quadstrip() and | |
| UGeo.triangleFan(), then draws the mesh with face normals | |
| */ | |
OlderNewer