https://github.com/memo/p5-thom-yorke-face-puller
Processing demo to interact with the Radiohead "House of Cards" point cloud data with mouse, pulling, stretching, springs etc.
https://github.com/memo/p5-thom-yorke-face-puller
Last synced: over 1 year ago
JSON representation
Processing demo to interact with the Radiohead "House of Cards" point cloud data with mouse, pulling, stretching, springs etc.
- Host: GitHub
- URL: https://github.com/memo/p5-thom-yorke-face-puller
- Owner: memo
- Created: 2011-03-06T13:41:27.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2011-03-06T15:16:20.000Z (over 15 years ago)
- Last Synced: 2025-03-02T17:09:50.695Z (over 1 year ago)
- Language: Java
- Homepage: http://vimeo.com/1371683
- Size: 30.2 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.txt
Awesome Lists containing this project
README
/***********************************************************************
* -----------------------------------
*
* Copyright (c) 2008, Memo Akten, www.memo.tv
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*
***********************************************************************/
/***********************************************************************
*
* This sample uses the pre-processed binary data found here:
* http://www.memo.tv/radiohead_house_of_cards_binary_pre_processed_data
*
***********************************************************************/
See http://vimeo.com/1371683 for demo
Keys:
void keyPressed() {
switch(key) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
renderMode = key-'0';
break;
// case 'r': renderMode = (renderMode + 1) % RENDER_MODE_COUNT; break;
case 's':
springOn = !springOn;
case '+':
particleSize *= 1.1;
break;
case '-':
particleSize /= 1.1;
break;
case 'u':
updateFrames = !updateFrames;
break;
}
}