prpl:signalgenerator

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
prpl:signalgenerator [2016/12/02 23:33] – external edit 127.0.0.1prpl:signalgenerator [2025/02/14 14:57] (current) – external edit 127.0.0.1
Line 7: Line 7:
  
  
-=== Description === +===== Description ===== 
-float ARG1: The time (the X coordinate in the waveform)<br/>  +Computes the value for a given signal waveform and pushes it to the stack.
-float ARG2: Frequency of the waveform<br/>  +
-float ARG3: PhaseShift of the waveform<br/>  +
-bool ARG4: invert the waveform<br/>  +
-int ARG5: Signal Type (0 to 6)<br/>  +
-Computes the value for a given signal waveform and pushes it to the stack.<p/>  +
-SIGNAL TYPES for ARG5<br/>  +
-0 = NONE<br/>  +
-1 = SINE<br/>  +
-2 = SQUARE<br/>  +
-3 = TRIANGLE<br/>  +
-4 = SAWTOOTH<br/>  +
-5 = RANDOM<br/>  +
-6 = CONSTANT<br/> +
  
-=== Examples === +A function to derive the y coordinate for a given x coordinate on a graph line following one of the indicated wave patterns. 
-<code>SignalGenerator(GetUpdateCount 1.0 div(30) 0 false 3) ->sigValue  +Useful to animate an object or to produce a pattern over time. For instance, could be used to oscillating the brightness of light source or beacon or to 
-trace(<-sigValue)  +vary the strength of an emitter over time.
-</code>+
  
 +   Arguments and type in order:
 +     - Integer.the X coordinate in the waveform(Eg.time)
 +     - Float.Frequency of the waveform
 +     - Float.Phase Shift of the waveform
 +     - Bool.invert the waveform
 +     - Integer.Signal type(0 to 6 in types, below)
 +
 +   Signal types:
 +     * 0 = NONE
 +     * 1 = SINE
 +     * 2 = SQUARE
 +     * 3 = TRIANGLE
 +     * 4 = SAW - TOOTH
 +     * 5 = RANDOM
 +     * 6 = CONSTANT
 +{{:prpl:signalgeneratorvisual.png?400|}}
 +//Visual of 4 periods of each waveform as if they were graphed//
 +   === Notes ===
 +   == Phase Shift ==
 +   The phase difference, or phase shift as it is also called of a Sinusoidal Waveform, is the 
 +   angle Φ(Greek letter Phi), in degrees or radians that the waveform has shifted from a certain reference 
 +   point along the horizontal zero axis.In other words phase shift is the lateral difference between two or more 
 +   waveforms along a common axis and sinusoidal waveforms of the same frequency can have a phase difference.
 +   The phase difference, Φ of an alternating waveform can vary from between 0 to its maximum time period, 
 +   T of the waveform during one complete cycle and this can be anywhere along the horizontal axis between, 
 +   Φ = 0 to 2π(radians) or Φ = 0 to 360o depending upon the angular units used.
 +
 +===== Examples =====
 +<code 4rpl>
 +# starting at coords of the core
 +# generate a long sine wave of particles once
 +once
 +   false ->invert
 +   0 ->phaseShift 
 +   .02 ->frequency 
 +   50 ->length
 +   # frequency * length will be the number of periods of the waveform
 +   # amplitude and widthMulti need to be greater than 4 so particles don't spawn on top of each other
 +   12 ->amplitude # how tall the waveform will be, from 0 in pixels
 +   4 ->widthMulti # how wide the waveform will be, 1 being standard, 4 being fours times as wide
 +   1 ->signalType #sine
 +
 +   do(<-length 0)
 +      SignalGenerator(I <-frequency <-phaseShift <-invert <-signalType) ->sigValue
 +      CurrentPixelCoords ->y ->x
 +      <-x I <-widthMulti mul add ->px
 +      <-y <-sigValue <-amplitude mul add ->py
 +      <-px <-py 0 0 1 1 CreateParticle
 +   loop
 +endonce
 +</code> 
prpl/signalgenerator.1480721630.txt.gz · Last modified: 2025/02/14 14:56 (external edit)