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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Hello Web - Controlling Processing from JavaScript</title> | |
<script src="processing-1.3.6.min.js"></script> | |
</head> | |
<body> | |
<!-- ここまでは必須項目 | |
Processingアプリケーションのjavascriptモードでも自動的にエクスポートされます --> |
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
#ifdef _WIN64 | |
//define something for Windows (64-bit) | |
#elif _WIN32 | |
//define something for Windows (32-bit) | |
#elif __APPLE__ | |
#include "TargetConditionals.h" | |
#if TARGET_OS_IPHONE && TARGET_IPHONE_SIMULATOR | |
// define something for simulator | |
#elif TARGET_OS_IPHONE | |
// define something for iphone |
NewerOlder