Comments Timeline

  • 2021-05-28  M_6_4_01_TOOL
    Comment by Abhinit

    Hi,
    i'm getting "generativedesign" package not founbd error while running in Processeing 3.5.4. Amy I missing some files?

    If yes, then can you help me resolve this issue?

    Many thanks!

  • 2020-11-03  P_1_2_3_01
    Comment by Manuela

    Hi, could you please explain why the counter value always starts at 50:  i.e. the first rectangle always has the counter 50, regardless of where the mouse goes. If maximum number of rectangls, I get the counter from 50 to 498. I would have expected it to start from 0. Thanks a lot!

  • 2020-10-26  P_1_2_1_01
    Comment by Manuela

    Can you please check code for P_1_2_2_01? It seems that it's missing? Thanks!

  • 2020-03-15  P_4_3_2_01
    Comment by Smmsamm

    I found my answer by using transparent png file.
    now another question is:
    Is it possible to prevent ovelapping text for create Words cloud?

  • 2020-03-15  P_4_3_2_01
    Comment by sMMSAMM

    Is it possible to add a mask for it? for example drawing in the inside of the circle only?

  • 2020-03-10  P_1_2_3_01
    Comment by Pablo

    Hello !

    Quick question : Why are the arrays of color component values  ( hueValues[],  saturationValues[] and brightnessValues[]) the size of "tileCountX" if at the end you are using a max 3 values of each one ( because of the modulo operator )  ??

     

     

  • 2019-11-25  P_1_2_3_02
    Comment by fang

    Can you explain this part? I really can't understand...Thank you!

     

     

     

     

    int counter = 0; // row count and row height int rowCount = (int)random(5,40); float rowHeight = (float)height/(float)rowCount; for(int i=0; i<rowCount; i++) { // seperate each line in parts // how many fragments int partCount = i+1; float[] parts = new float[0]; for(int ii=0; ii<partCount; ii++) { // sub fragments or not? if (random(1.0) < 0.075) { // take care of big values int fragments = (int)random(2,20); partCount = partCount + fragments; for(int iii=0; iii<fragments; iii++) { parts = append(parts, random(2)); } } else { parts = append(parts, random(2,20)); } } // add all subparts float sumPartsTotal = 0; for(int ii=0; ii<partCount; ii++) sumPartsTotal += parts[ii]; // draw rects float sumPartsNow = 0; for(int ii=0; ii<parts.length; ii++) { // get component color values int index = counter % colorCount; fill(hueValues[index],saturationValues[index],brightnessValues[index]); sumPartsNow += parts[ii]; rect(map(sumPartsNow, 0,sumPartsTotal, 0,width),rowHeight*i, map(parts[ii], 0,sumPartsTotal, 0,width)*-1,rowHeight); counter++; } }
  • 2019-10-29  P_1_1_1_01
    Comment by Justdep

    hi, I'm new to processing and in the code there're "gridX" and "gridY" and I don't see them declared anywhere. so how does it work? thanks

  • 2019-07-31  M_4_4_01_TOOL
    Comment by bla

    bla

  • 2019-04-25  P_2_3_6_01
    Comment by Marie-Louise

    Hallo,

     

    Bei einer size Angabe von 2339px x 3441 px ist das Fenster so groß, dass ich nur einen kleinen Teil davon nutzen kann, ist es möglich sich innerhalb des Fensters zu bewegen oder dies auf die Größe meines Bildschirms zu verkleinern ohne die tatsächliche size Größe zu verändern?

     

    LG