NaPoWriMo x NaPoGenMo 2024 Day 23 : Cinquain Again

NaPoWriMo x NaPoGenMo 2024 Day 23 : Cinquain Again

Geometrical Coded Poems

GeometricalCinquains

For the 23rd day of NaPoWriMo / NaPoGenMo, "GeometricalCinquains" coded in LiveCodeLab takes the forms of a Quintain(Any Poem with five lines) and a CInquain(A Poem that follows the form 2,4,6,8,2).

With additional sound from SonicPi & some edits

Video

Code

Coded Cinquain (LiveCodeLab)

animationStyle motionBlur // 2 words
rotate cos(time), 3 //4 words
ball sin(time), wave(1), 2 //6 words
box sin(time), wave(1), cos(time) + 1  // 8 words
ball 1 //2 words

SonicPi

def Sine_ing(looping,samp1,samp2,samp3)
  rangeFul = (0..17).to_a.shuffle() #shuffling a range of numbers from 0 to 17 into an array
  #setting counters
  i = 0
  j = rangeFul.length()

  #setting the live loop
  live_loop looping do

    with_fx :echo, mix: Math.sin(j).abs do
      with_fx :distortion,mix: Math.sin(i).abs do
        #If the sin makes the number a negative
        if Math.sin(rangeFul[i]) > 0
          sample [samp1,samp3].choose,rate: Math.sin(rangeFul[i])
        end
      end
    end


    with_fx :ping_pong, mix: Math.sin(i).abs do
      #If the sin makes the number a positive
      if Math.sin(rangeFul[i]) >  0
        sample [samp2,samp3].choose
      end
    end

    with_fx :ixi_techno, mix: Math.sin(j).abs do
      with_fx :vowel, mix: Math.cos(j).abs do
        #If the sin makes the number 0
        if Math.sin(rangeFul[i]) == 0
          sample [samp1,samp2].choose
        end
      end
    end


    i += 1

    if i >= rangeFul.length()
      i = 0
    end

    j -= 1

    if j <= 0
      j = 0
    end

    sleep [Math.sin(i).abs + 0.25,Math.sin(j).abs + 0.25].choose #to avoid the issue with zero

  end
end

sample

Sine_ing(:SineFul,:tabla_ghe5,:drum_bass_soft,:elec_blip)
Sine_ing(:SineFul2,:ambi_dark_woosh,:perc_snap2,:glitch_perc5)
Sine_ing(:SineFul3,:ambi_piano,:ambi_haunted_hum,:vinyl_backspin)