SpringMesh

Interactive cloth for iPhone and iPad you can twist, pull and deform using multitouch or gravity

by Ricardo Sanchez
Published by CreativeApplications.Net

About

Inspired by the natural phenomena of cloths and liquids, Ricardo Sanchez explores spring mesh dynamics using box2D physics. SpringMesh is an interactive cloth you can twist, pull and deform using multitouch or gravity.

Created by Ricardo Sanchez and published by CreativeApplications.Net
Made with openFrameworks, an open source C++ toolkit.

Features
  • Tap and drag to control the deformers (multitouch supported)
  • Adjust spring damping, frequency and force radius
  • Adjust mesh appearance including fills, wireframe or points
  • Adjust mesh density
  • Gravity - mesh gets twisted according to device orientation
  • Change mesh color gradient
  • Save image to photo library
  • Universal - one app for all your iOS devices.
  • Video
    Flickr Group
    www.flickr.com
    Details

    SpringMesh was built using ofxBox2d physics addon for openFrameworks. It consists of a series of particles interconnected by springs, border particles are static allowing the mesh to maintaing its original form, while inner particles repel, attract to user input (multitouch) or fall under gravity. Its colour is a direct representation of the forces applied, the stronger the force the lighter the colour.

    Building the Mesh

    The grid is build by specifying the number of horizontal cells, from it we calculate the number of vertical cells by using a gridRatio (rows = (int)( cols / gridRatio )). The rest fall in place with a couple of for loops (to calculate positions: float x = colCellDist * i; and to create particles: if ( i == 0 || i == cols || j == 0 || j == rows ) {//stuff}}). Particles with no mass are static, these are created at the edges that maintaing the mesh in place, stored in a particle container. The rest of the particles are created inside, these have mass, density, and friction properties also stored in a particle container. Then we create horizontal connections by using the newly created particles and the previous in the container with index [idx - 1], stored in a spring container. Vertical connections follows same principle as before but now we take the previous particle from the container with index [idx - cols - 1], stored in a spring container.

    Rendering wireframe mesh

    For the wireframe view we loop through the springs container, getting both sides of the spring, its colour is calculated by the separation distance of both particles. By calculating distance between spring bodies positions we change colours. Here we draw all springs but but not the edge ones, as the edge particles contain no mass.

    Building UI

    The UI is built upon basic UIKit example bundled with openFrameworks. Additional views are created physicsView, meshView and infoView which are the pop-ups you see when clicked on buttons. The app variables such as adjustSpringDamping, adjustSpringFrequency, adjustForceRadius are connected to sliders. Likewise, their values are updated by init() (example: guiViewController.springDampingSlider.value = drag;). One all the dots were connected, adding a random button was easy by simply void testApp::runRandom() which randomises those values. Saving settings was done using ofxXmlSettings where slider values and switches are written to the xml file. When the app opens, the XML is read and values mapped to setup().

    Created with openFrameworks 0.7b.

    Addons used

  • MSAShape3D - by Memo Atken
  • ofxBox2d - box2d wrapper for OF by Tod Vanderlin
  • ofxXmlSettings
  • Press + Reviews

    Download Press Pack Here (10mb)