Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • cloth
  • docker-sh
  • docs
  • videos
  • demo_single_straight
  • demo_single
  • videos_colliding
  • bending-constraint-demo
  • constraint
  • endzsinke
  • FTL-demo
12 results

brave-2

  • Clone with SSH
  • Clone with HTTPS
  • user avatar
    bobarna authored
    fa4bf7f2
    History

    Simulation of Curly Hair

    This was my 5th semester Project Laboratory project at Budapest University of Technology and Economics. You can find the project report here, in the docs folder with all the details.

    Teaser Image of generated red hair

    Trying it out

    Dependencies

    For building:

    • CMake (if you want to build the project following the instructions below)
    • and of course a compiler of your choice

    After installing the dependencies, the easiest way to build the project is using the CMakeLists.txt file included.

    Installing the dependencies on Linux

    On Linux-based systems that use the apt package manager, you can install these by running:

    sudo apt-get update && sudo apt-get install -y \
        build-essential \
        cmake \
        libglfw3-dev \
        libglew-dev

    Building on Linux

    Build the project with CMake. I recommend to create a build folder, and install there.

    # create and cd into the build directory
    mkdir build
    cd build
    
    # generate makefiles from the parent directory
    cmake ..
    # build the project
    make
    
    # run the project from the build directory
    ./brave2