error404

Custom page 404 Error In progress

Damien Monteillard | Creative Commons BY-NC-SA

404 error page

Animation

L'animation comporte quelques défauts notables. Je me doit de corriger ces défauts

Here a link of the 404 error page 404 de 3dminfographie.com to see the animation.

Concept de spirale d'or avec des Cubes

Generation of cubes with a new array modifier

Create a single cube 1 x 1 x 1 m.
Use the new Array modifier

Dissociate each cube with p by loose parts to make them independent

Create the animation of cubes

Here is a small piece of c++ code to create a recursive function that is very useful for the position of cubes in time and space.

#include 
using namespace std;

double phi = 1.618033989;

double calcul_d(int n, double d0) {
    if (n == 0) return d0;
    else return calcul_d(n-1, d0) / phi;
}

int main() {
    double d0;
    int j;
    cout << "Entrez la valeur de d0 : ";
    cin >> d0;
    cout << "Entrez le nombre d'itération n : ";
    cin >> j;

    for (int i = 0; i <= j; i++) {
        cout << "d" << i << " = " << calcul_d(i, d0) << endl;
    }
    return 0;
}


Spiral Generation with Geometry Nodes

real 3D of this loop