├── .github └── FUNDING.yml ├── .gitignore ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── README.md ├── config.php ├── content ├── api_en │ ├── FloatDict.xml │ ├── FloatDict_add.xml │ ├── FloatDict_clear.xml │ ├── FloatDict_div.xml │ ├── FloatDict_get.xml │ ├── FloatDict_hasKey.xml │ ├── FloatDict_keyArray.xml │ ├── FloatDict_keys.xml │ ├── FloatDict_mult.xml │ ├── FloatDict_remove.xml │ ├── FloatDict_set.xml │ ├── FloatDict_size.xml │ ├── FloatDict_sortKeys.xml │ ├── FloatDict_sortKeysReverse.xml │ ├── FloatDict_sortValues.xml │ ├── FloatDict_sortValuesReverse.xml │ ├── FloatDict_sub.xml │ ├── FloatDict_valueArray.xml │ ├── FloatDict_values.xml │ ├── FloatList.xml │ ├── FloatList_add.xml │ ├── FloatList_append.xml │ ├── FloatList_array.xml │ ├── FloatList_clear.xml │ ├── FloatList_div.xml │ ├── FloatList_get.xml │ ├── FloatList_hasValue.xml │ ├── FloatList_max.xml │ ├── FloatList_min.xml │ ├── FloatList_mult.xml │ ├── FloatList_remove.xml │ ├── FloatList_reverse.xml │ ├── FloatList_set.xml │ ├── FloatList_shuffle.xml │ ├── FloatList_size.xml │ ├── FloatList_sort.xml │ ├── FloatList_sortReverse.xml │ ├── FloatList_sub.xml │ ├── HALF_PI.xml │ ├── IntDict.xml │ ├── IntDict_add.xml │ ├── IntDict_clear.xml │ ├── IntDict_div.xml │ ├── IntDict_get.xml │ ├── IntDict_hasKey.xml │ ├── IntDict_increment.xml │ ├── IntDict_keyArray.xml │ ├── IntDict_keys.xml │ ├── IntDict_mult.xml │ ├── IntDict_remove.xml │ ├── IntDict_set.xml │ ├── IntDict_size.xml │ ├── IntDict_sortKeys.xml │ ├── IntDict_sortKeysReverse.xml │ ├── IntDict_sortValues.xml │ ├── IntDict_sortValuesReverse.xml │ ├── IntDict_sub.xml │ ├── IntDict_valueArray.xml │ ├── IntDict_values.xml │ ├── IntList.xml │ ├── IntList_add.xml │ ├── IntList_append.xml │ ├── IntList_array.xml │ ├── IntList_clear.xml │ ├── IntList_div.xml │ ├── IntList_get.xml │ ├── IntList_hasValue.xml │ ├── IntList_increment.xml │ ├── IntList_max.xml │ ├── IntList_min.xml │ ├── IntList_mult.xml │ ├── IntList_remove.xml │ ├── IntList_reverse.xml │ ├── IntList_set.xml │ ├── IntList_shuffle.xml │ ├── IntList_size.xml │ ├── IntList_sort.xml │ ├── IntList_sortReverse.xml │ ├── IntList_sub.xml │ ├── JSONArray.xml │ ├── JSONArray_append.xml │ ├── JSONArray_getBoolean.xml │ ├── JSONArray_getFloat.xml │ ├── JSONArray_getInt.xml │ ├── JSONArray_getIntArray.xml │ ├── JSONArray_getJSONArray.xml │ ├── JSONArray_getJSONObject.xml │ ├── JSONArray_getString.xml │ ├── JSONArray_getStringArray.xml │ ├── JSONArray_isNull.xml │ ├── JSONArray_remove.xml │ ├── JSONArray_setBoolean.xml │ ├── JSONArray_setFloat.xml │ ├── JSONArray_setInt.xml │ ├── JSONArray_setJSONArray.xml │ ├── JSONArray_setJSONObject.xml │ ├── JSONArray_setString.xml │ ├── JSONArray_size.xml │ ├── JSONObject.xml │ ├── JSONObject_getBoolean.xml │ ├── JSONObject_getFloat.xml │ ├── JSONObject_getInt.xml │ ├── JSONObject_getJSONArray.xml │ ├── JSONObject_getJSONObject.xml │ ├── JSONObject_getString.xml │ ├── JSONObject_isNull.xml │ ├── JSONObject_setBoolean.xml │ ├── JSONObject_setFloat.xml │ ├── JSONObject_setInt.xml │ ├── JSONObject_setJSONArray.xml │ ├── JSONObject_setJSONObject.xml │ ├── JSONObject_setString.xml │ ├── LIB_dxf │ │ └── index.html │ ├── LIB_io │ │ ├── GPIO.xml │ │ ├── GPIO_attachInterrupt.xml │ │ ├── GPIO_digitalRead.xml │ │ ├── GPIO_digitalWrite.xml │ │ ├── GPIO_disableInterrupt.xml │ │ ├── GPIO_enableInterrupt.xml │ │ ├── GPIO_interrupts.xml │ │ ├── GPIO_noInterrupts.xml │ │ ├── GPIO_pinMode.xml │ │ ├── GPIO_releaseInterrupt.xml │ │ ├── GPIO_releasePin.xml │ │ ├── GPIO_waitFor.xml │ │ ├── I2C.xml │ │ ├── I2C_beginTransmission.xml │ │ ├── I2C_close.xml │ │ ├── I2C_endTransmission.xml │ │ ├── I2C_list.xml │ │ ├── I2C_read.xml │ │ ├── I2C_write.xml │ │ ├── LED.xml │ │ ├── LED_brightness.xml │ │ ├── LED_close.xml │ │ ├── LED_list.xml │ │ ├── PWM.xml │ │ ├── PWM_clear.xml │ │ ├── PWM_close.xml │ │ ├── PWM_list.xml │ │ ├── PWM_set.xml │ │ ├── SPI.xml │ │ ├── SPI_close.xml │ │ ├── SPI_list.xml │ │ ├── SPI_settings.xml │ │ ├── SPI_transfer.xml │ │ ├── SoftwareServo.xml │ │ ├── SoftwareServo_attach.xml │ │ ├── SoftwareServo_attached.xml │ │ ├── SoftwareServo_detach.xml │ │ ├── SoftwareServo_write.xml │ │ └── index.html │ ├── LIB_net │ │ ├── Client.xml │ │ ├── Client_active.xml │ │ ├── Client_available.xml │ │ ├── Client_clear.xml │ │ ├── Client_ip.xml │ │ ├── Client_read.xml │ │ ├── Client_readBytes.xml │ │ ├── Client_readBytesUntil.xml │ │ ├── Client_readChar.xml │ │ ├── Client_readString.xml │ │ ├── Client_readStringUntil.xml │ │ ├── Client_stop.xml │ │ ├── Client_write.xml │ │ ├── Server.xml │ │ ├── Server_active.xml │ │ ├── Server_available.xml │ │ ├── Server_disconnect.xml │ │ ├── Server_ip.xml │ │ ├── Server_stop.xml │ │ ├── Server_write.xml │ │ ├── clientEvent.xml │ │ ├── disconnectEvent.xml │ │ ├── index.html │ │ └── serverEvent.xml │ ├── LIB_pdf │ │ └── index.html │ ├── LIB_serial │ │ ├── Serial.xml │ │ ├── Serial_available.xml │ │ ├── Serial_buffer.xml │ │ ├── Serial_bufferUntil.xml │ │ ├── Serial_clear.xml │ │ ├── Serial_last.xml │ │ ├── Serial_lastChar.xml │ │ ├── Serial_list.xml │ │ ├── Serial_read.xml │ │ ├── Serial_readBytes.xml │ │ ├── Serial_readBytesUntil.xml │ │ ├── Serial_readChar.xml │ │ ├── Serial_readString.xml │ │ ├── Serial_readStringUntil.xml │ │ ├── Serial_stop.xml │ │ ├── Serial_write.xml │ │ ├── index.html │ │ └── serialEvent.xml │ ├── LIB_sound │ │ ├── Amplitude.xml │ │ ├── Amplitude_analyze.xml │ │ ├── Amplitude_input.xml │ │ ├── Amplitude_stop.xml │ │ ├── AudioDevice.xml │ │ ├── AudioIn.xml │ │ ├── AudioIn_add.xml │ │ ├── AudioIn_amp.xml │ │ ├── AudioIn_pan.xml │ │ ├── AudioIn_play.xml │ │ ├── AudioIn_set.xml │ │ ├── AudioIn_start.xml │ │ ├── AudioIn_stop.xml │ │ ├── AudioSample.xml │ │ ├── AudioSample_amp.xml │ │ ├── AudioSample_channels.xml │ │ ├── AudioSample_cue.xml │ │ ├── AudioSample_duration.xml │ │ ├── AudioSample_frames.xml │ │ ├── AudioSample_isPlaying.xml │ │ ├── AudioSample_jump.xml │ │ ├── AudioSample_loop.xml │ │ ├── AudioSample_pan.xml │ │ ├── AudioSample_pause.xml │ │ ├── AudioSample_play.xml │ │ ├── AudioSample_rate.xml │ │ ├── AudioSample_read.xml │ │ ├── AudioSample_resize.xml │ │ ├── AudioSample_sampleRate.xml │ │ ├── AudioSample_write.xml │ │ ├── BandPass.xml │ │ ├── BandPass_bw.xml │ │ ├── BandPass_freq.xml │ │ ├── BandPass_process.xml │ │ ├── BandPass_set.xml │ │ ├── BandPass_stop.xml │ │ ├── BrownNoise.xml │ │ ├── BrownNoise_add.xml │ │ ├── BrownNoise_amp.xml │ │ ├── BrownNoise_pan.xml │ │ ├── BrownNoise_play.xml │ │ ├── BrownNoise_set.xml │ │ ├── BrownNoise_stop.xml │ │ ├── Delay.xml │ │ ├── Delay_feedback.xml │ │ ├── Delay_process.xml │ │ ├── Delay_set.xml │ │ ├── Delay_stop.xml │ │ ├── Delay_time.xml │ │ ├── Env.xml │ │ ├── Env_play.xml │ │ ├── FFT.xml │ │ ├── FFT_analyze.xml │ │ ├── FFT_input.xml │ │ ├── FFT_stop.xml │ │ ├── HighPass.xml │ │ ├── HighPass_freq.xml │ │ ├── HighPass_process.xml │ │ ├── HighPass_stop.xml │ │ ├── LowPass.xml │ │ ├── LowPass_freq.xml │ │ ├── LowPass_process.xml │ │ ├── LowPass_stop.xml │ │ ├── PinkNoise.xml │ │ ├── PinkNoise_add.xml │ │ ├── PinkNoise_amp.xml │ │ ├── PinkNoise_pan.xml │ │ ├── PinkNoise_play.xml │ │ ├── PinkNoise_set.xml │ │ ├── PinkNoise_stop.xml │ │ ├── Pulse.xml │ │ ├── Pulse_add.xml │ │ ├── Pulse_amp.xml │ │ ├── Pulse_freq.xml │ │ ├── Pulse_pan.xml │ │ ├── Pulse_play.xml │ │ ├── Pulse_set.xml │ │ ├── Pulse_stop.xml │ │ ├── Pulse_width.xml │ │ ├── Reverb.xml │ │ ├── Reverb_damp.xml │ │ ├── Reverb_process.xml │ │ ├── Reverb_room.xml │ │ ├── Reverb_set.xml │ │ ├── Reverb_stop.xml │ │ ├── Reverb_wet.xml │ │ ├── SawOsc.xml │ │ ├── SawOsc_add.xml │ │ ├── SawOsc_amp.xml │ │ ├── SawOsc_freq.xml │ │ ├── SawOsc_pan.xml │ │ ├── SawOsc_play.xml │ │ ├── SawOsc_set.xml │ │ ├── SawOsc_stop.xml │ │ ├── SinOsc.xml │ │ ├── SinOsc_add.xml │ │ ├── SinOsc_amp.xml │ │ ├── SinOsc_freq.xml │ │ ├── SinOsc_pan.xml │ │ ├── SinOsc_play.xml │ │ ├── SinOsc_set.xml │ │ ├── SinOsc_stop.xml │ │ ├── Sound.xml │ │ ├── SoundFile.xml │ │ ├── SoundFile_add.xml │ │ ├── SoundFile_amp.xml │ │ ├── SoundFile_channels.xml │ │ ├── SoundFile_cue.xml │ │ ├── SoundFile_duration.xml │ │ ├── SoundFile_frames.xml │ │ ├── SoundFile_isPlaying.xml │ │ ├── SoundFile_jump.xml │ │ ├── SoundFile_loop.xml │ │ ├── SoundFile_pan.xml │ │ ├── SoundFile_pause.xml │ │ ├── SoundFile_play.xml │ │ ├── SoundFile_rate.xml │ │ ├── SoundFile_set.xml │ │ ├── SoundFile_stop.xml │ │ ├── Sound_inputDevice.xml │ │ ├── Sound_list.xml │ │ ├── Sound_outputDevice.xml │ │ ├── Sound_sampleRate.xml │ │ ├── Sound_volume.xml │ │ ├── SqrOsc.xml │ │ ├── SqrOsc_add.xml │ │ ├── SqrOsc_amp.xml │ │ ├── SqrOsc_freq.xml │ │ ├── SqrOsc_pan.xml │ │ ├── SqrOsc_play.xml │ │ ├── SqrOsc_set.xml │ │ ├── SqrOsc_stop.xml │ │ ├── TriOsc.xml │ │ ├── TriOsc_add.xml │ │ ├── TriOsc_amp.xml │ │ ├── TriOsc_freq.xml │ │ ├── TriOsc_pan.xml │ │ ├── TriOsc_play.xml │ │ ├── TriOsc_set.xml │ │ ├── TriOsc_stop.xml │ │ ├── Waveform.xml │ │ ├── WhiteNoise.xml │ │ ├── WhiteNoise_add.xml │ │ ├── WhiteNoise_amp.xml │ │ ├── WhiteNoise_pan.xml │ │ ├── WhiteNoise_play.xml │ │ ├── WhiteNoise_set.xml │ │ ├── WhiteNoise_stop.xml │ │ └── index.html │ ├── LIB_svg │ │ └── index.html │ ├── LIB_video │ │ ├── Capture.xml │ │ ├── Capture_available.xml │ │ ├── Capture_list.xml │ │ ├── Capture_read.xml │ │ ├── Capture_start.xml │ │ ├── Capture_stop.xml │ │ ├── Movie.xml │ │ ├── Movie_available.xml │ │ ├── Movie_duration.xml │ │ ├── Movie_frameRate.xml │ │ ├── Movie_jump.xml │ │ ├── Movie_loop.xml │ │ ├── Movie_noLoop.xml │ │ ├── Movie_pause.xml │ │ ├── Movie_play.xml │ │ ├── Movie_read.xml │ │ ├── Movie_speed.xml │ │ ├── Movie_stop.xml │ │ ├── Movie_time.xml │ │ ├── captureEvent.xml │ │ ├── index.html │ │ └── movieEvent.xml │ ├── PFont.xml │ ├── PFont_list.xml │ ├── PGraphics.xml │ ├── PGraphics_beginDraw.xml │ ├── PGraphics_endDraw.xml │ ├── PI.xml │ ├── PImage.xml │ ├── PImage_blend.xml │ ├── PImage_copy.xml │ ├── PImage_filter.xml │ ├── PImage_get.xml │ ├── PImage_height.xml │ ├── PImage_loadPixels.xml │ ├── PImage_mask.xml │ ├── PImage_pixels.xml │ ├── PImage_resize.xml │ ├── PImage_save.xml │ ├── PImage_set.xml │ ├── PImage_updatePixels.xml │ ├── PImage_width.xml │ ├── PShader.xml │ ├── PShader_set.xml │ ├── PShape.xml │ ├── PShape_addChild.xml │ ├── PShape_beginContour.xml │ ├── PShape_beginShape.xml │ ├── PShape_disableStyle.xml │ ├── PShape_enableStyle.xml │ ├── PShape_endContour.xml │ ├── PShape_endShape.xml │ ├── PShape_getChild.xml │ ├── PShape_getChildCount.xml │ ├── PShape_getVertex.xml │ ├── PShape_getVertexCount.xml │ ├── PShape_height.xml │ ├── PShape_isVisible.xml │ ├── PShape_resetMatrix.xml │ ├── PShape_rotate.xml │ ├── PShape_rotateX.xml │ ├── PShape_rotateY.xml │ ├── PShape_rotateZ.xml │ ├── PShape_scale.xml │ ├── PShape_setFill.xml │ ├── PShape_setStroke.xml │ ├── PShape_setVertex.xml │ ├── PShape_setVisible.xml │ ├── PShape_translate.xml │ ├── PShape_width.xml │ ├── PVector.xml │ ├── PVector_add.xml │ ├── PVector_angleBetween.xml │ ├── PVector_array.xml │ ├── PVector_copy.xml │ ├── PVector_cross.xml │ ├── PVector_dist.xml │ ├── PVector_div.xml │ ├── PVector_dot.xml │ ├── PVector_fromAngle.xml │ ├── PVector_get.xml │ ├── PVector_heading.xml │ ├── PVector_lerp.xml │ ├── PVector_limit.xml │ ├── PVector_mag.xml │ ├── PVector_magSq.xml │ ├── PVector_mult.xml │ ├── PVector_normalize.xml │ ├── PVector_random2D.xml │ ├── PVector_random3D.xml │ ├── PVector_rotate.xml │ ├── PVector_set.xml │ ├── PVector_setMag.xml │ ├── PVector_sub.xml │ ├── PVector_x.xml │ ├── PVector_y.xml │ ├── PVector_z.xml │ ├── QUARTER_PI.xml │ ├── StringDict.xml │ ├── StringDict_clear.xml │ ├── StringDict_get.xml │ ├── StringDict_hasKey.xml │ ├── StringDict_keyArray.xml │ ├── StringDict_keys.xml │ ├── StringDict_remove.xml │ ├── StringDict_set.xml │ ├── StringDict_size.xml │ ├── StringDict_sortKeys.xml │ ├── StringDict_sortKeysReverse.xml │ ├── StringDict_sortValues.xml │ ├── StringDict_sortValuesReverse.xml │ ├── StringDict_valueArray.xml │ ├── StringDict_values.xml │ ├── StringList.xml │ ├── StringList_append.xml │ ├── StringList_array.xml │ ├── StringList_clear.xml │ ├── StringList_get.xml │ ├── StringList_hasValue.xml │ ├── StringList_lower.xml │ ├── StringList_remove.xml │ ├── StringList_reverse.xml │ ├── StringList_set.xml │ ├── StringList_shuffle.xml │ ├── StringList_size.xml │ ├── StringList_sort.xml │ ├── StringList_sortReverse.xml │ ├── StringList_upper.xml │ ├── TAU.xml │ ├── TWO_PI.xml │ ├── Table.xml │ ├── TableRow.xml │ ├── TableRow_getColumnCount.xml │ ├── TableRow_getColumnTitle.xml │ ├── TableRow_getFloat.xml │ ├── TableRow_getInt.xml │ ├── TableRow_getString.xml │ ├── TableRow_setFloat.xml │ ├── TableRow_setInt.xml │ ├── TableRow_setString.xml │ ├── Table_addColumn.xml │ ├── Table_addRow.xml │ ├── Table_clearRows.xml │ ├── Table_findRow.xml │ ├── Table_findRows.xml │ ├── Table_getColumnCount.xml │ ├── Table_getFloat.xml │ ├── Table_getInt.xml │ ├── Table_getRow.xml │ ├── Table_getRowCount.xml │ ├── Table_getString.xml │ ├── Table_getStringColumn.xml │ ├── Table_matchRow.xml │ ├── Table_matchRows.xml │ ├── Table_removeColumn.xml │ ├── Table_removeRow.xml │ ├── Table_removeTokens.xml │ ├── Table_rows.xml │ ├── Table_setFloat.xml │ ├── Table_setInt.xml │ ├── Table_setString.xml │ ├── Table_sort.xml │ ├── Table_trim.xml │ ├── XML.xml │ ├── XML_addChild.xml │ ├── XML_format.xml │ ├── XML_getAttributeCount.xml │ ├── XML_getChild.xml │ ├── XML_getChildren.xml │ ├── XML_getContent.xml │ ├── XML_getFloat.xml │ ├── XML_getFloatContent.xml │ ├── XML_getInt.xml │ ├── XML_getIntContent.xml │ ├── XML_getName.xml │ ├── XML_getParent.xml │ ├── XML_getString.xml │ ├── XML_hasAttribute.xml │ ├── XML_hasChildren.xml │ ├── XML_listAttributes.xml │ ├── XML_listChildren.xml │ ├── XML_removeChild.xml │ ├── XML_setContent.xml │ ├── XML_setFloat.xml │ ├── XML_setInt.xml │ ├── XML_setName.xml │ ├── XML_setString.xml │ ├── XML_toString.xml │ ├── abs.xml │ ├── acos.xml │ ├── alpha.xml │ ├── ambient.xml │ ├── ambientLight.xml │ ├── append.xml │ ├── applyMatrix.xml │ ├── arc.xml │ ├── arrayCopy.xml │ ├── asin.xml │ ├── atan.xml │ ├── atan2.xml │ ├── attrib.xml │ ├── background.xml │ ├── beginCamera.xml │ ├── beginContour.xml │ ├── beginRaw.xml │ ├── beginRecord.xml │ ├── beginShape.xml │ ├── bezier.xml │ ├── bezierDetail.xml │ ├── bezierPoint.xml │ ├── bezierTangent.xml │ ├── bezierVertex.xml │ ├── binary.xml │ ├── blank.xml │ ├── blend.xml │ ├── blendColor.xml │ ├── blendMode.xml │ ├── blue.xml │ ├── box.xml │ ├── brightness.xml │ ├── camera.xml │ ├── ceil.xml │ ├── circle.xml │ ├── clear.xml │ ├── clip.xml │ ├── color.xml │ ├── colorMode.xml │ ├── concat.xml │ ├── constrain.xml │ ├── copy.xml │ ├── cos.xml │ ├── createFont.xml │ ├── createGraphics.xml │ ├── createImage.xml │ ├── createInput.xml │ ├── createOutput.xml │ ├── createReader.xml │ ├── createShape.xml │ ├── createWriter.xml │ ├── cursor.xml │ ├── curve.xml │ ├── curveDetail.xml │ ├── curvePoint.xml │ ├── curveTangent.xml │ ├── curveTightness.xml │ ├── curveVertex.xml │ ├── day.xml │ ├── degrees.xml │ ├── delay.xml │ ├── directionalLight.xml │ ├── displayDensity.xml │ ├── displayHeight.xml │ ├── displayWidth.xml │ ├── dist.xml │ ├── draw.xml │ ├── ellipse.xml │ ├── ellipseMode.xml │ ├── emissive.xml │ ├── endCamera.xml │ ├── endContour.xml │ ├── endRaw.xml │ ├── endRecord.xml │ ├── endShape.xml │ ├── environment │ │ ├── images │ │ │ ├── coordinates.gif │ │ │ ├── coordinates2D3D.png │ │ │ ├── export.gif │ │ │ ├── header.gif │ │ │ ├── ide.gif │ │ │ ├── new.gif │ │ │ ├── open.gif │ │ │ ├── play.gif │ │ │ ├── save.gif │ │ │ ├── stop.gif │ │ │ └── up_arrow.gif │ │ └── index.html │ ├── exit.xml │ ├── exp.xml │ ├── expand.xml │ ├── fill.xml │ ├── filter.xml │ ├── floor.xml │ ├── focused.xml │ ├── frameCount.xml │ ├── frameRate.xml │ ├── frameRate_var.xml │ ├── frustum.xml │ ├── fullScreen.xml │ ├── get.xml │ ├── green.xml │ ├── height.xml │ ├── hex.xml │ ├── hour.xml │ ├── hue.xml │ ├── image.xml │ ├── imageMode.xml │ ├── images │ │ └── header.gif │ ├── include │ │ ├── Array.xml │ │ ├── ArrayList.xml │ │ ├── BufferedReader.xml │ │ ├── BufferedReader_readLine.xml │ │ ├── HashMap.xml │ │ ├── Object.xml │ │ ├── PrintWriter.xml │ │ ├── PrintWriter_close.xml │ │ ├── PrintWriter_flush.xml │ │ ├── PrintWriter_print.xml │ │ ├── PrintWriter_println.xml │ │ ├── String.xml │ │ ├── String_charAt.xml │ │ ├── String_equals.xml │ │ ├── String_indexOf.xml │ │ ├── String_length.xml │ │ ├── String_substring.xml │ │ ├── String_toLowerCase.xml │ │ ├── String_toUpperCase.xml │ │ ├── addassign.xml │ │ ├── addition.xml │ │ ├── arrayaccess.xml │ │ ├── assign.xml │ │ ├── bitwiseAND.xml │ │ ├── bitwiseOR.xml │ │ ├── boolean.xml │ │ ├── booleanconvert.xml │ │ ├── break.xml │ │ ├── byte.xml │ │ ├── byteconvert.xml │ │ ├── case.xml │ │ ├── catch.xml │ │ ├── char.xml │ │ ├── charconvert.xml │ │ ├── class.xml │ │ ├── color_datatype.xml │ │ ├── comma.xml │ │ ├── comment.xml │ │ ├── conditional.xml │ │ ├── continue.xml │ │ ├── curlybraces.xml │ │ ├── decrement.xml │ │ ├── default.xml │ │ ├── divide.xml │ │ ├── divideassign.xml │ │ ├── doccomment.xml │ │ ├── dot.xml │ │ ├── double.xml │ │ ├── else.xml │ │ ├── equality.xml │ │ ├── extends.xml │ │ ├── false.xml │ │ ├── final.xml │ │ ├── float.xml │ │ ├── floatconvert.xml │ │ ├── for.xml │ │ ├── greaterthan.xml │ │ ├── greaterthanorequalto.xml │ │ ├── hint.xml │ │ ├── if.xml │ │ ├── implements.xml │ │ ├── import.xml │ │ ├── increment.xml │ │ ├── inequality.xml │ │ ├── int.xml │ │ ├── intconvert.xml │ │ ├── leftshift.xml │ │ ├── lessthan.xml │ │ ├── lessthanorequalto.xml │ │ ├── logicalAND.xml │ │ ├── logicalNOT.xml │ │ ├── logicalOR.xml │ │ ├── long.xml │ │ ├── minus.xml │ │ ├── modulo.xml │ │ ├── multilinecomment.xml │ │ ├── multiply.xml │ │ ├── multiplyassign.xml │ │ ├── new.xml │ │ ├── null.xml │ │ ├── parentheses.xml │ │ ├── private.xml │ │ ├── public.xml │ │ ├── return.xml │ │ ├── rightshift.xml │ │ ├── semicolon.xml │ │ ├── setLocation.xml │ │ ├── setResizable.xml │ │ ├── setTitle.xml │ │ ├── static.xml │ │ ├── strconvert.xml │ │ ├── subtractassign.xml │ │ ├── super.xml │ │ ├── switch.xml │ │ ├── this.xml │ │ ├── true.xml │ │ ├── try.xml │ │ ├── void.xml │ │ └── while.xml │ ├── join.xml │ ├── key.xml │ ├── keyCode.xml │ ├── keyPressed.xml │ ├── keyPressed_var.xml │ ├── keyReleased.xml │ ├── keyTyped.xml │ ├── launch.xml │ ├── lerp.xml │ ├── lerpColor.xml │ ├── libraries │ │ ├── images │ │ │ ├── contributions.gif │ │ │ ├── corelibraries.gif │ │ │ └── header.gif │ │ └── index.html │ ├── lightFalloff.xml │ ├── lightSpecular.xml │ ├── lights.xml │ ├── line.xml │ ├── loadBytes.xml │ ├── loadFont.xml │ ├── loadImage.xml │ ├── loadJSONArray.xml │ ├── loadJSONObject.xml │ ├── loadPixels.xml │ ├── loadShader.xml │ ├── loadShape.xml │ ├── loadStrings.xml │ ├── loadTable.xml │ ├── loadXML.xml │ ├── log.xml │ ├── loop.xml │ ├── mag.xml │ ├── map.xml │ ├── match.xml │ ├── matchAll.xml │ ├── max.xml │ ├── millis.xml │ ├── min.xml │ ├── minute.xml │ ├── modelX.xml │ ├── modelY.xml │ ├── modelZ.xml │ ├── month.xml │ ├── mouseButton.xml │ ├── mouseClicked.xml │ ├── mouseDragged.xml │ ├── mouseMoved.xml │ ├── mousePressed.xml │ ├── mousePressed_var.xml │ ├── mouseReleased.xml │ ├── mouseWheel.xml │ ├── mouseX.xml │ ├── mouseY.xml │ ├── nf.xml │ ├── nfc.xml │ ├── nfp.xml │ ├── nfs.xml │ ├── noClip.xml │ ├── noCursor.xml │ ├── noFill.xml │ ├── noLights.xml │ ├── noLoop.xml │ ├── noSmooth.xml │ ├── noStroke.xml │ ├── noTint.xml │ ├── noise.xml │ ├── noiseDetail.xml │ ├── noiseSeed.xml │ ├── norm.xml │ ├── normal.xml │ ├── ortho.xml │ ├── parseJSONArray.xml │ ├── parseJSONObject.xml │ ├── parseXML.xml │ ├── perspective.xml │ ├── pixelDensity.xml │ ├── pixelHeight.xml │ ├── pixelWidth.xml │ ├── pixels.xml │ ├── pmouseX.xml │ ├── pmouseY.xml │ ├── point.xml │ ├── pointLight.xml │ ├── pop.xml │ ├── popMatrix.xml │ ├── popStyle.xml │ ├── pow.xml │ ├── print.xml │ ├── printArray.xml │ ├── printCamera.xml │ ├── printMatrix.xml │ ├── printProjection.xml │ ├── println.xml │ ├── push.xml │ ├── pushMatrix.xml │ ├── pushStyle.xml │ ├── quad.xml │ ├── quadraticVertex.xml │ ├── radians.xml │ ├── random.xml │ ├── randomGaussian.xml │ ├── randomSeed.xml │ ├── rect.xml │ ├── rectMode.xml │ ├── red.xml │ ├── redraw.xml │ ├── requestImage.xml │ ├── resetMatrix.xml │ ├── resetShader.xml │ ├── reverse.xml │ ├── rotate.xml │ ├── rotateX.xml │ ├── rotateY.xml │ ├── rotateZ.xml │ ├── round.xml │ ├── saturation.xml │ ├── save.xml │ ├── saveBytes.xml │ ├── saveFrame.xml │ ├── saveJSONArray.xml │ ├── saveJSONObject.xml │ ├── saveStream.xml │ ├── saveStrings.xml │ ├── saveTable.xml │ ├── saveXML.xml │ ├── scale.xml │ ├── screenX.xml │ ├── screenY.xml │ ├── screenZ.xml │ ├── second.xml │ ├── selectFolder.xml │ ├── selectInput.xml │ ├── selectOutput.xml │ ├── set.xml │ ├── settings.xml │ ├── setup.xml │ ├── shader.xml │ ├── shape.xml │ ├── shapeMode.xml │ ├── shearX.xml │ ├── shearY.xml │ ├── shininess.xml │ ├── shorten.xml │ ├── sin.xml │ ├── size.xml │ ├── smooth.xml │ ├── sort.xml │ ├── specular.xml │ ├── sphere.xml │ ├── sphereDetail.xml │ ├── splice.xml │ ├── split.xml │ ├── splitTokens.xml │ ├── spotLight.xml │ ├── sq.xml │ ├── sqrt.xml │ ├── square.xml │ ├── stroke.xml │ ├── strokeCap.xml │ ├── strokeJoin.xml │ ├── strokeWeight.xml │ ├── subset.xml │ ├── tan.xml │ ├── text.xml │ ├── textAlign.xml │ ├── textAscent.xml │ ├── textDescent.xml │ ├── textFont.xml │ ├── textLeading.xml │ ├── textMode.xml │ ├── textSize.xml │ ├── textWidth.xml │ ├── texture.xml │ ├── textureMode.xml │ ├── textureWrap.xml │ ├── thread.xml │ ├── tint.xml │ ├── tools │ │ ├── images │ │ │ ├── contributions.gif │ │ │ └── header.gif │ │ └── index.html │ ├── translate.xml │ ├── translation │ │ └── translation.xml │ ├── triangle.xml │ ├── trim.xml │ ├── unbinary.xml │ ├── unhex.xml │ ├── updatePixels.xml │ ├── vertex.xml │ ├── width.xml │ └── year.xml ├── api_media │ ├── HALF_PI.png │ ├── LIB_sound_Pulse.png │ ├── LIB_sound_SawOsc.png │ ├── LIB_sound_SinOsc.png │ ├── LIB_sound_SqrOsc.png │ ├── LIB_sound_TriOsc.png │ ├── PFont.png │ ├── PI.png │ ├── PImage.png │ ├── PImage_blend_0_add.png │ ├── PImage_blend_1_subtract.png │ ├── PImage_blend_2_darkest.png │ ├── PImage_blend_3_lightest.png │ ├── PImage_copy_.png │ ├── PImage_filter_0_threshold.png │ ├── PImage_filter_1_gray.png │ ├── PImage_filter_2_invert.png │ ├── PImage_filter_3_posterize.png │ ├── PImage_filter_4_blur.png │ ├── PImage_filter_5_erode.png │ ├── PImage_filter_6_dilate.png │ ├── PImage_get_0.png │ ├── PImage_get_1.png │ ├── PImage_height.png │ ├── PImage_loadPixels_.png │ ├── PImage_mask_.png │ ├── PImage_pixels.png │ ├── PImage_resize_0.png │ ├── PImage_resize_1.png │ ├── PImage_set_.png │ ├── PImage_updatePixels_.png │ ├── PImage_width.png │ ├── PShape.png │ ├── PShape_disableStyle_.png │ ├── PShape_enableStyle_.png │ ├── PShape_getChild_.png │ ├── PShape_isVisible_.png │ ├── PShape_setVisible_.png │ ├── QUARTER_PI.png │ ├── TWO_PI.png │ ├── alpha_.png │ ├── ambientLight_0.png │ ├── ambientLight_1.png │ ├── ambient_.png │ ├── applyMatrix_.png │ ├── arc_.png │ ├── arc_2.png │ ├── arc_3.png │ ├── arc_4.png │ ├── background_0.png │ ├── background_1.png │ ├── background_2.png │ ├── beginCamera_.png │ ├── beginContour_0.png │ ├── beginShape_0.png │ ├── beginShape_1.png │ ├── beginShape_10.png │ ├── beginShape_2.png │ ├── beginShape_3.png │ ├── beginShape_4.png │ ├── beginShape_5.png │ ├── beginShape_6.png │ ├── beginShape_7.png │ ├── beginShape_8.png │ ├── beginShape_9.png │ ├── bezierPoint_.png │ ├── bezierTangent_0.png │ ├── bezierTangent_1.png │ ├── bezierVertex_0.png │ ├── bezierVertex_1.png │ ├── bezier_0.png │ ├── bezier_1.png │ ├── blendColor_.png │ ├── blend_0_add.png │ ├── blend_1_subtract.png │ ├── blend_2_darkest.png │ ├── blend_3_lightest.png │ ├── blue_.png │ ├── boolean.png │ ├── box_0.png │ ├── box_1.png │ ├── brightness_.png │ ├── camera_.png │ ├── color.png │ ├── colorMode_0.png │ ├── colorMode_1.png │ ├── colorMode_2.png │ ├── color_0.png │ ├── color_1.png │ ├── color_2.png │ ├── copy_.png │ ├── cos_.png │ ├── createImage_0.png │ ├── createImage_1.png │ ├── curveDetail_.png │ ├── curvePoint_.png │ ├── curveTangent_.png │ ├── curveVertex_.png │ ├── curve_.png │ ├── directionalLight_0.png │ ├── directionalLight_1.png │ ├── ellipseMode_0.png │ ├── ellipseMode_1.png │ ├── ellipse_.png │ ├── else0.png │ ├── else1.png │ ├── emissive_.png │ ├── endCamera_.png │ ├── endShape_.png │ ├── fill_0.png │ ├── fill_1.png │ ├── filter_0_threshold.png │ ├── filter_1_gray.png │ ├── filter_2_invert.png │ ├── filter_3_posterize.png │ ├── filter_4_blur.png │ ├── filter_5_erode.png │ ├── filter_6_dilate.png │ ├── for_0.png │ ├── for_1.png │ ├── for_2.png │ ├── for_3.png │ ├── frustum_.png │ ├── get_0.png │ ├── get_1.png │ ├── green_.png │ ├── height.png │ ├── hue_.png │ ├── if_.png │ ├── imageMode_0.png │ ├── imageMode_1.png │ ├── imageMode_2.png │ ├── image_0.png │ ├── image_1.png │ ├── lerpColor_.png │ ├── lerp_0.png │ ├── lerp_1.png │ ├── lightFalloff_.png │ ├── lightSpecular_.png │ ├── lights_0.png │ ├── lights_1.png │ ├── line_0.png │ ├── line_1.png │ ├── line_2.png │ ├── loadFont_.png │ ├── loadImage_0.png │ ├── loadImage_1.png │ ├── loadImage_2.png │ ├── loadPixels_.png │ ├── loadShape_0.png │ ├── loadShape_1.png │ ├── logicalAND.png │ ├── logicalNOT.png │ ├── logicalNOT_2.png │ ├── logicalOR.png │ ├── mag_.png │ ├── noFill_.png │ ├── noSmooth_.png │ ├── noStroke_.png │ ├── noTint_.png │ ├── normal_.png │ ├── ortho_.png │ ├── perspective_.png │ ├── pixels.png │ ├── pointLight_.png │ ├── point_0.png │ ├── point_1.png │ ├── popMatrix_.png │ ├── popStyle_0.png │ ├── popStyle_1.png │ ├── pushMatrix_.png │ ├── pushStyle_0.png │ ├── pushStyle_1.png │ ├── quad_.png │ ├── quadraticVertex_0.png │ ├── quadraticVertex_1.png │ ├── randomGaussian_0.png │ ├── randomGaussian_1.png │ ├── rectMode_0.png │ ├── rectMode_1.png │ ├── rect_0.png │ ├── rect_1.png │ ├── rect_2.png │ ├── red_.png │ ├── resetMatrix_.png │ ├── rotateX_0.png │ ├── rotateX_1.png │ ├── rotateY_0.png │ ├── rotateY_1.png │ ├── rotateZ_0.png │ ├── rotateZ_1.png │ ├── rotate_.png │ ├── saturation_.png │ ├── scale_0.png │ ├── scale_1.png │ ├── scale_2.png │ ├── select_arrow.gif │ ├── set_0.png │ ├── set_1.png │ ├── set_2.png │ ├── shapeMode_.png │ ├── shape_0.png │ ├── shape_1.png │ ├── shearX_.png │ ├── shearY_.png │ ├── shininess_.png │ ├── sin_.png │ ├── size_0.png │ ├── size_1.png │ ├── size_2.png │ ├── smooth_.png │ ├── specular_.png │ ├── sphere_.png │ ├── spotLight_0.png │ ├── spotLight_1.png │ ├── sq_.png │ ├── sqrt_.png │ ├── strokeCap_.png │ ├── strokeJoin_0.png │ ├── strokeJoin_1.png │ ├── strokeJoin_2.png │ ├── strokeWeight_.png │ ├── stroke_0.png │ ├── stroke_1.png │ ├── tan_.png │ ├── textAlign_.png │ ├── textAlign_0.png │ ├── textAlign_1.png │ ├── textAscent_.png │ ├── textDescent_.png │ ├── textFont_.png │ ├── textLeading_.png │ ├── textSize_.png │ ├── textWidth_.png │ ├── text_0.png │ ├── text_1.png │ ├── text_2.png │ ├── textureMode_0.png │ ├── textureMode_1.png │ ├── texture_.png │ ├── tint_0.png │ ├── tint_1.png │ ├── tint_2.png │ ├── translate_0.png │ ├── translate_1.png │ ├── translate_2.png │ ├── triangle_.png │ ├── updatePixels_.png │ ├── vertex_0.png │ ├── vertex_1.png │ ├── vertex_2.png │ ├── while_.png │ └── width.png ├── curated.xml ├── curated_images │ ├── 000.gif │ ├── 001.gif │ ├── 002.gif │ ├── 003.gif │ ├── 004.gif │ ├── 108.jpg │ ├── 3dprintedrecord.jpg │ ├── 3dprintedrecord@2x.jpg │ ├── 872a_jogan.gif │ ├── 872a_stanat.gif │ ├── FluidLeaves.jpg │ ├── FluidLeaves@2x.jpg │ ├── Phantogram.jpg │ ├── Phantogram@2x.jpg │ ├── aadrl.jpg │ ├── aadrl@2x.jpg │ ├── ac.jpg │ ├── acoustic.jpg │ ├── aeolab.jpg │ ├── any.gif │ ├── aqueous.jpg │ ├── articulate.gif │ ├── astring.jpg │ ├── autoorchestra.jpg │ ├── autoorchestra@2x.jpg │ ├── avena.jpg │ ├── avena@2x.jpg │ ├── balldroppings.gif │ ├── base26.gif │ ├── bodynavigation.jpg │ ├── branching.jpg │ ├── buttons.jpg │ ├── c_drawer.jpg │ ├── camp.jpg │ ├── carden.jpg │ ├── cascade.jpg │ ├── casey_pc.jpg │ ├── catalina.jpg │ ├── catanese.jpg │ ├── cfcityflows.jpg │ ├── cfcityflows@2x.jpg │ ├── chamber.gif │ ├── cho.jpg │ ├── chronodraw.gif │ ├── citysymphonies.jpg │ ├── collider.jpg │ ├── computing-kaizen.jpg │ ├── continuum.jpg │ ├── cop15.jpg │ ├── creators.jpg │ ├── d5lv.jpg │ ├── dextro.jpg │ ├── dextro@2x.jpg │ ├── digitalnatives.jpg │ ├── digits.jpg │ ├── digits@2x.jpg │ ├── discom.jpg │ ├── dreamlines.jpg │ ├── dumpster.gif │ ├── ecstasy.gif │ ├── electro.jpg │ ├── emergence.jpg │ ├── europa.gif │ ├── faa.jpg │ ├── feltron.jpg │ ├── filament.jpg │ ├── filament@2x.jpg │ ├── finecollection.jpg │ ├── firstborn.jpg │ ├── fluid.jpg │ ├── fluid@2x.jpg │ ├── fluidtime.jpg │ ├── foxmovies.jpg │ ├── fragmented.jpg │ ├── fragmented@2x.jpg │ ├── gl.gif │ ├── golan_cards.jpg │ ├── golberg.jpg │ ├── grass.jpg │ ├── haohao.jpg │ ├── hehe.jpg │ ├── hinundher.gif │ ├── hodgin.jpg │ ├── houck.jpg │ ├── house.jpg │ ├── igoe-bird.png │ ├── igoe.jpg │ ├── inequality.gif │ ├── intheair.jpg │ ├── itp.jpg │ ├── itp2.jpg │ ├── jackolantern.jpg │ ├── jellyfish.jpg │ ├── johnhenry.jpg │ ├── juani.jpg │ ├── juhuu.gif │ ├── justlanded.jpg │ ├── katya.jpg │ ├── keyflies.jpg │ ├── keyflies@2x.jpg │ ├── khronos.jpg │ ├── kinograph.jpg │ ├── kinograph@2x.jpg │ ├── koblin.jpg │ ├── komorebi.jpg │ ├── komorebi@2x.jpg │ ├── letterpairs.gif │ ├── lifevslife.gif │ ├── lightkinetics.jpg │ ├── lightkinetics@2x.jpg │ ├── liquid.jpg │ ├── liquidliquid.gif │ ├── lovebytes.png │ ├── maeve.jpg │ ├── manifest.gif │ ├── maxplanck.jpg │ ├── metropop.gif │ ├── min_mod.gif │ ├── mit.jpg │ ├── mitidentity.jpg │ ├── monsters.gif │ ├── moovl.gif │ ├── mos.gif │ ├── mtv.gif │ ├── mud.jpg │ ├── muon.jpg │ ├── muth.jpg │ ├── mutualism.jpg │ ├── mycelium.png │ ├── mypocket.jpg │ ├── mz.png │ ├── nervous.jpg │ ├── networth.gif │ ├── newsknitter.jpg │ ├── nikeone.jpg │ ├── npz.gif │ ├── nudemengarden.gif │ ├── nytcascade.jpg │ ├── nyx.jpg │ ├── oasis.gif │ ├── objectifier.jpg │ ├── objectifier@2x.jpg │ ├── one-perfect-cube.jpg │ ├── ortho.gif │ ├── pachinko.jpg │ ├── papa.jpg │ ├── parametric.jpg │ ├── particleflow.jpg │ ├── particleflow@2x.jpg │ ├── pathfinder.jpg │ ├── pathfinder@2x.jpg │ ├── petting.jpg │ ├── petting@2x.jpg │ ├── ping.jpg │ ├── pixelroller.jpg │ ├── pixtil.jpg │ ├── pixtil@2x.jpg │ ├── platonic.jpg │ ├── pond.gif │ ├── possible.jpg │ ├── possible@2x.jpg │ ├── pour.jpg │ ├── pour@2x.jpg │ ├── privacy.jpg │ ├── proto.jpg │ ├── prototyp0.jpg │ ├── proximity.gif │ ├── random.jpg │ ├── random@2x.jpg │ ├── rc4.jpg │ ├── rc4@2x.jpg │ ├── realtime.jpg │ ├── redux.jpg │ ├── relations.gif │ ├── ricochet.gif │ ├── roots.jpg │ ├── shadowmonsters.jpg │ ├── shakespeare.jpg │ ├── sheep.gif │ ├── silenc.png │ ├── silenc2.png │ ├── silica.jpg │ ├── simdiv.jpg │ ├── skyline.gif │ ├── slub.gif │ ├── sodaprocessing.gif │ ├── sonicwire.gif │ ├── soundmachines.jpg │ ├── spies.gif │ ├── starnursery.jpg │ ├── stateoftheunion.gif │ ├── stewart.jpg │ ├── stewart@2x.jpg │ ├── stonespray.jpg │ ├── strata.jpg │ ├── superhero.gif │ ├── suzung.jpg │ ├── taobot.jpg │ ├── techsupport.gif │ ├── terrapattern.jpg │ ├── terrapattern@2x.jpg │ ├── terre.jpg │ ├── thinking.jpg │ ├── timescape.jpg │ ├── tokyo.jpg │ ├── traces.jpg │ ├── traces@2x.jpg │ ├── tracking.jpg │ ├── ttc.gif │ ├── universe.gif │ ├── unnamed.jpg │ ├── unrealart.gif │ ├── visualeditions.jpg │ ├── visualscratch.jpg │ ├── vj.jpg │ ├── volume.jpg │ ├── volume@2x.jpg │ ├── wave.gif │ ├── wefeelfine.jpg │ ├── wf3.png │ ├── whiteglove.jpg │ ├── wiggle.gif │ ├── withouttitle.jpg │ ├── xmas.gif │ ├── yahoo.jpg │ ├── yellowtail.gif │ └── ymyi.jpg ├── examples │ ├── Basics │ │ ├── Arrays │ │ │ ├── Array │ │ │ │ └── Array.pde │ │ │ ├── Array2D │ │ │ │ └── Array2D.pde │ │ │ └── ArrayObjects │ │ │ │ ├── ArrayObjects.pde │ │ │ │ └── Module.pde │ │ ├── Camera │ │ │ ├── MoveEye │ │ │ │ └── MoveEye.pde │ │ │ ├── Orthographic │ │ │ │ └── Orthographic.pde │ │ │ └── Perspective │ │ │ │ └── Perspective.pde │ │ ├── Color │ │ │ ├── Brightness │ │ │ │ └── Brightness.pde │ │ │ ├── ColorVariables │ │ │ │ └── ColorVariables.pde │ │ │ ├── Hue │ │ │ │ └── Hue.pde │ │ │ ├── LinearGradient │ │ │ │ └── LinearGradient.pde │ │ │ ├── RadialGradient │ │ │ │ └── RadialGradient.pde │ │ │ ├── Relativity │ │ │ │ └── Relativity.pde │ │ │ ├── Saturation │ │ │ │ └── Saturation.pde │ │ │ └── WaveGradient │ │ │ │ └── WaveGradient.pde │ │ ├── Control │ │ │ ├── Conditionals1 │ │ │ │ └── Conditionals1.pde │ │ │ ├── Conditionals2 │ │ │ │ └── Conditionals2.pde │ │ │ ├── EmbeddedIteration │ │ │ │ └── EmbeddedIteration.pde │ │ │ ├── Iteration │ │ │ │ └── Iteration.pde │ │ │ └── LogicalOperators │ │ │ │ └── LogicalOperators.pde │ │ ├── Data │ │ │ ├── CharactersStrings │ │ │ │ ├── CharactersStrings.pde │ │ │ │ └── data │ │ │ │ │ └── SourceCodePro-Regular.ttf │ │ │ ├── DatatypeConversion │ │ │ │ ├── DatatypeConversion.pde │ │ │ │ └── data │ │ │ │ │ └── SourceCodePro-Regular.ttf │ │ │ ├── IntegersFloats │ │ │ │ └── IntegersFloats.pde │ │ │ ├── TrueFalse │ │ │ │ └── TrueFalse.pde │ │ │ ├── VariableScope │ │ │ │ └── VariableScope.pde │ │ │ └── Variables │ │ │ │ └── Variables.pde │ │ ├── Form │ │ │ ├── Bezier │ │ │ │ └── Bezier.pde │ │ │ ├── PieChart │ │ │ │ └── PieChart.pde │ │ │ ├── PointsLines │ │ │ │ └── PointsLines.pde │ │ │ ├── Primitives3D │ │ │ │ └── Primitives3D.pde │ │ │ ├── RegularPolygon │ │ │ │ └── RegularPolygon.pde │ │ │ ├── ShapePrimitives │ │ │ │ └── ShapePrimitives.pde │ │ │ ├── Star │ │ │ │ └── Star.pde │ │ │ └── TriangleStrip │ │ │ │ └── TriangleStrip.pde │ │ ├── Image │ │ │ ├── Alphamask │ │ │ │ ├── Alphamask.pde │ │ │ │ └── data │ │ │ │ │ ├── mask.jpg │ │ │ │ │ └── moonwalk.jpg │ │ │ ├── BackgroundImage │ │ │ │ ├── BackgroundImage.pde │ │ │ │ └── data │ │ │ │ │ └── moonwalk.jpg │ │ │ ├── CreateImage │ │ │ │ └── CreateImage.pde │ │ │ ├── LoadDisplayImage │ │ │ │ ├── LoadDisplayImage.pde │ │ │ │ └── data │ │ │ │ │ └── moonwalk.jpg │ │ │ ├── Pointillism │ │ │ │ ├── Pointillism.pde │ │ │ │ └── data │ │ │ │ │ └── moonwalk.jpg │ │ │ ├── RequestImage │ │ │ │ ├── RequestImage.pde │ │ │ │ └── data │ │ │ │ │ ├── PT_anim0000.gif │ │ │ │ │ ├── PT_anim0001.gif │ │ │ │ │ ├── PT_anim0002.gif │ │ │ │ │ ├── PT_anim0003.gif │ │ │ │ │ ├── PT_anim0004.gif │ │ │ │ │ ├── PT_anim0005.gif │ │ │ │ │ ├── PT_anim0006.gif │ │ │ │ │ ├── PT_anim0007.gif │ │ │ │ │ ├── PT_anim0008.gif │ │ │ │ │ ├── PT_anim0009.gif │ │ │ │ │ ├── PT_anim0010.gif │ │ │ │ │ └── PT_anim0011.gif │ │ │ └── Transparency │ │ │ │ ├── Transparency.pde │ │ │ │ └── data │ │ │ │ └── moonwalk.jpg │ │ ├── Input │ │ │ ├── Clock │ │ │ │ └── Clock.pde │ │ │ ├── Constrain │ │ │ │ └── Constrain.pde │ │ │ ├── Easing │ │ │ │ └── Easing.pde │ │ │ ├── Keyboard │ │ │ │ └── Keyboard.pde │ │ │ ├── KeyboardFunctions │ │ │ │ └── KeyboardFunctions.pde │ │ │ ├── Milliseconds │ │ │ │ └── Milliseconds.pde │ │ │ ├── Mouse1D │ │ │ │ └── Mouse1D.pde │ │ │ ├── Mouse2D │ │ │ │ └── Mouse2D.pde │ │ │ ├── MouseFunctions │ │ │ │ └── MouseFunctions.pde │ │ │ ├── MousePress │ │ │ │ └── MousePress.pde │ │ │ ├── MouseSignals │ │ │ │ └── MouseSignals.pde │ │ │ └── StoringInput │ │ │ │ └── StoringInput.pde │ │ ├── Lights │ │ │ ├── Directional │ │ │ │ └── Directional.pde │ │ │ ├── Mixture │ │ │ │ └── Mixture.pde │ │ │ ├── MixtureGrid │ │ │ │ └── MixtureGrid.pde │ │ │ ├── OnOff │ │ │ │ └── OnOff.pde │ │ │ ├── Reflection │ │ │ │ └── Reflection.pde │ │ │ └── Spot │ │ │ │ └── Spot.pde │ │ ├── Math │ │ │ ├── AdditiveWave │ │ │ │ └── AdditiveWave.pde │ │ │ ├── Arctangent │ │ │ │ └── Arctangent.pde │ │ │ ├── Distance1D │ │ │ │ └── Distance1D.pde │ │ │ ├── Distance2D │ │ │ │ └── Distance2D.pde │ │ │ ├── DoubleRandom │ │ │ │ └── DoubleRandom.pde │ │ │ ├── Graphing2DEquation │ │ │ │ └── Graphing2DEquation.pde │ │ │ ├── IncrementDecrement │ │ │ │ └── IncrementDecrement.pde │ │ │ ├── Interpolate │ │ │ │ └── Interpolate.pde │ │ │ ├── Map │ │ │ │ └── Map.pde │ │ │ ├── Noise1D │ │ │ │ └── Noise1D.pde │ │ │ ├── Noise2D │ │ │ │ └── Noise2D.pde │ │ │ ├── Noise3D │ │ │ │ └── Noise3D.pde │ │ │ ├── NoiseWave │ │ │ │ └── NoiseWave.pde │ │ │ ├── OperatorPrecedence │ │ │ │ └── OperatorPrecedence.pde │ │ │ ├── PolarToCartesian │ │ │ │ └── PolarToCartesian.pde │ │ │ ├── Random │ │ │ │ └── Random.pde │ │ │ ├── RandomGaussian │ │ │ │ └── RandomGaussian.pde │ │ │ ├── Sine │ │ │ │ └── Sine.pde │ │ │ ├── SineCosine │ │ │ │ └── SineCosine.pde │ │ │ └── SineWave │ │ │ │ └── SineWave.pde │ │ ├── Objects │ │ │ ├── CompositeObjects │ │ │ │ ├── CompositeObjects.pde │ │ │ │ ├── Egg.pde │ │ │ │ ├── EggRing.pde │ │ │ │ └── Ring.pde │ │ │ ├── Inheritance │ │ │ │ └── Inheritance.pde │ │ │ ├── MultipleConstructors │ │ │ │ └── MultipleConstructors.pde │ │ │ └── Objects │ │ │ │ └── Objects.pde │ │ ├── Shape │ │ │ ├── DisableStyle │ │ │ │ ├── DisableStyle.pde │ │ │ │ └── data │ │ │ │ │ └── bot1.svg │ │ │ ├── GetChild │ │ │ │ ├── GetChild.pde │ │ │ │ └── data │ │ │ │ │ └── usa-wikipedia.svg │ │ │ ├── LoadDisplayOBJ │ │ │ │ ├── LoadDisplayOBJ.pde │ │ │ │ └── data │ │ │ │ │ ├── rocket.mtl │ │ │ │ │ ├── rocket.obj │ │ │ │ │ └── rocket.png │ │ │ ├── LoadDisplaySVG │ │ │ │ ├── LoadDisplaySVG.pde │ │ │ │ └── data │ │ │ │ │ └── bot1.svg │ │ │ ├── ScaleShape │ │ │ │ ├── ScaleShape.pde │ │ │ │ └── data │ │ │ │ │ └── bot1.svg │ │ │ └── ShapeVertices │ │ │ │ ├── ShapeVertices.pde │ │ │ │ └── data │ │ │ │ └── uk.svg │ │ ├── Structure │ │ │ ├── Coordinates │ │ │ │ └── Coordinates.pde │ │ │ ├── CreateGraphics │ │ │ │ ├── CreateGraphics.pde │ │ │ │ └── data │ │ │ │ │ ├── mask.jpg │ │ │ │ │ └── test.jpg │ │ │ ├── Functions │ │ │ │ └── Functions.pde │ │ │ ├── Loop │ │ │ │ └── Loop.pde │ │ │ ├── NoLoop │ │ │ │ └── NoLoop.pde │ │ │ ├── Recursion │ │ │ │ └── Recursion.pde │ │ │ ├── Redraw │ │ │ │ └── Redraw.pde │ │ │ ├── SetupDraw │ │ │ │ └── SetupDraw.pde │ │ │ ├── StatementsComments │ │ │ │ └── StatementsComments.pde │ │ │ └── WidthHeight │ │ │ │ └── WidthHeight.pde │ │ ├── Transform │ │ │ ├── Arm │ │ │ │ └── Arm.pde │ │ │ ├── Rotate │ │ │ │ └── Rotate.pde │ │ │ ├── RotatePushPop │ │ │ │ └── RotatePushPop.pde │ │ │ ├── RotateXY │ │ │ │ └── RotateXY.pde │ │ │ ├── Scale │ │ │ │ └── Scale.pde │ │ │ └── Translate │ │ │ │ └── Translate.pde │ │ ├── Typography │ │ │ ├── Letters │ │ │ │ ├── Letters.pde │ │ │ │ └── data │ │ │ │ │ └── SourceCodePro-Regular.ttf │ │ │ ├── TextRotation │ │ │ │ ├── TextRotation.pde │ │ │ │ └── data │ │ │ │ │ └── SourceCodePro-Regular.ttf │ │ │ └── Words │ │ │ │ ├── Words.pde │ │ │ │ └── data │ │ │ │ └── SourceCodePro-Regular.ttf │ │ └── Web │ │ │ ├── EmbeddedLinks │ │ │ └── EmbeddedLinks.pde │ │ │ └── LoadingImages │ │ │ └── LoadingImages.pde │ ├── Demos │ │ ├── Graphics │ │ │ ├── DepthSort │ │ │ │ └── DepthSort.pde │ │ │ ├── LowLevelGLVboInterleaved │ │ │ │ ├── LowLevelGLVboInterleaved.pde │ │ │ │ └── data │ │ │ │ │ ├── frag.glsl │ │ │ │ │ └── vert.glsl │ │ │ ├── LowLevelGLVboSeparate │ │ │ │ ├── LowLevelGLVboSeparate.pde │ │ │ │ └── data │ │ │ │ │ ├── frag.glsl │ │ │ │ │ └── vert.glsl │ │ │ ├── MeshTweening │ │ │ │ ├── MeshTweening.pde │ │ │ │ └── data │ │ │ │ │ ├── frag.glsl │ │ │ │ │ └── vert.glsl │ │ │ ├── Particles │ │ │ │ ├── Particle.pde │ │ │ │ ├── ParticleSystem.pde │ │ │ │ ├── Particles.pde │ │ │ │ └── data │ │ │ │ │ └── sprite.png │ │ │ ├── Patch │ │ │ │ └── Patch.pde │ │ │ ├── Planets │ │ │ │ ├── Perlin.pde │ │ │ │ ├── Planets.pde │ │ │ │ └── data │ │ │ │ │ ├── mercury.jpg │ │ │ │ │ ├── planet.jpg │ │ │ │ │ ├── starfield.jpg │ │ │ │ │ └── sun.jpg │ │ │ ├── Ribbons │ │ │ │ ├── ArcBall.pde │ │ │ │ ├── BSpline.pde │ │ │ │ ├── Geometry.pde │ │ │ │ ├── PDB.pde │ │ │ │ ├── Ribbons.pde │ │ │ │ └── data │ │ │ │ │ ├── 1CBS.pdb │ │ │ │ │ ├── 2POR.pdb │ │ │ │ │ └── 4HHB.pdb │ │ │ ├── RotatingArcs │ │ │ │ └── RotatingArcs.pde │ │ │ ├── Trefoil │ │ │ │ ├── Surface.pde │ │ │ │ ├── Trefoil.pde │ │ │ │ └── data │ │ │ │ │ └── particle.png │ │ │ ├── Wiggling │ │ │ │ └── Wiggling.pde │ │ │ └── Yellowtail │ │ │ │ ├── Gesture.pde │ │ │ │ ├── Vec3f.pde │ │ │ │ └── Yellowtail.pde │ │ ├── Performance │ │ │ ├── CubicGridImmediate │ │ │ │ └── CubicGridImmediate.pde │ │ │ ├── CubicGridRetained │ │ │ │ └── CubicGridRetained.pde │ │ │ ├── DynamicParticlesImmediate │ │ │ │ ├── DynamicParticlesImmediate.pde │ │ │ │ └── data │ │ │ │ │ └── sprite.png │ │ │ ├── DynamicParticlesRetained │ │ │ │ ├── DynamicParticlesRetained.pde │ │ │ │ └── data │ │ │ │ │ └── sprite.png │ │ │ ├── Esfera │ │ │ │ └── Esfera.pde │ │ │ ├── LineRendering │ │ │ │ └── LineRendering.pde │ │ │ ├── QuadRendering │ │ │ │ └── QuadRendering.pde │ │ │ ├── StaticParticlesImmediate │ │ │ │ ├── StaticParticlesImmediate.pde │ │ │ │ └── data │ │ │ │ │ └── sprite.png │ │ │ ├── StaticParticlesRetained │ │ │ │ ├── StaticParticlesRetained.pde │ │ │ │ └── data │ │ │ │ │ └── sprite.png │ │ │ └── TextRendering │ │ │ │ └── TextRendering.pde │ │ └── Tests │ │ │ ├── MultipleWindows │ │ │ ├── Arcball.pde │ │ │ └── MultipleWindows.pde │ │ │ ├── NoBackgroundTest │ │ │ └── NoBackgroundTest.pde │ │ │ ├── OffscreenTest │ │ │ └── OffscreenTest.pde │ │ │ ├── RedrawTest │ │ │ └── RedrawTest.pde │ │ │ ├── ResizeTest │ │ │ └── ResizeTest.pde │ │ │ └── SpecsTest │ │ │ └── SpecsTest.pde │ ├── README.md │ └── Topics │ │ ├── Advanced Data │ │ ├── ArrayListClass │ │ │ ├── ArrayListClass.pde │ │ │ └── Ball.pde │ │ ├── CountingStrings │ │ │ ├── CountingStrings.pde │ │ │ └── data │ │ │ │ ├── SourceCodePro-Regular.ttf │ │ │ │ └── dracula.txt │ │ ├── HashMapClass │ │ │ ├── HashMapClass.pde │ │ │ ├── Word.pde │ │ │ └── data │ │ │ │ ├── SourceCodePro-Regular.ttf │ │ │ │ ├── dracula.txt │ │ │ │ └── frankenstein.txt │ │ ├── IntListLottery │ │ │ └── IntListLottery.pde │ │ ├── LoadSaveJSON │ │ │ ├── Bubble.pde │ │ │ ├── LoadSaveJSON.pde │ │ │ └── data │ │ │ │ └── data.json │ │ ├── LoadSaveTable │ │ │ ├── Bubble.pde │ │ │ ├── LoadSaveTable.pde │ │ │ └── data │ │ │ │ └── data.csv │ │ ├── LoadSaveXML │ │ │ ├── Bubble.pde │ │ │ ├── LoadSaveXML.pde │ │ │ └── data │ │ │ │ └── data.xml │ │ ├── Regex │ │ │ └── Regex.pde │ │ ├── Threads │ │ │ └── Threads.pde │ │ └── XMLYahooWeather │ │ │ ├── XMLYahooWeather.pde │ │ │ └── data │ │ │ ├── Merriweather-Light.ttf │ │ │ └── SourceCodePro-Regular.ttf │ │ ├── Animation │ │ ├── AnimatedSprite │ │ │ ├── AnimatedSprite.pde │ │ │ ├── Animation.pde │ │ │ └── data │ │ │ │ ├── PT_Shifty_0000.gif │ │ │ │ ├── PT_Shifty_0001.gif │ │ │ │ ├── PT_Shifty_0002.gif │ │ │ │ ├── PT_Shifty_0003.gif │ │ │ │ ├── PT_Shifty_0004.gif │ │ │ │ ├── PT_Shifty_0005.gif │ │ │ │ ├── PT_Shifty_0006.gif │ │ │ │ ├── PT_Shifty_0007.gif │ │ │ │ ├── PT_Shifty_0008.gif │ │ │ │ ├── PT_Shifty_0009.gif │ │ │ │ ├── PT_Shifty_0010.gif │ │ │ │ ├── PT_Shifty_0011.gif │ │ │ │ ├── PT_Shifty_0012.gif │ │ │ │ ├── PT_Shifty_0013.gif │ │ │ │ ├── PT_Shifty_0014.gif │ │ │ │ ├── PT_Shifty_0015.gif │ │ │ │ ├── PT_Shifty_0016.gif │ │ │ │ ├── PT_Shifty_0017.gif │ │ │ │ ├── PT_Shifty_0018.gif │ │ │ │ ├── PT_Shifty_0019.gif │ │ │ │ ├── PT_Shifty_0020.gif │ │ │ │ ├── PT_Shifty_0021.gif │ │ │ │ ├── PT_Shifty_0022.gif │ │ │ │ ├── PT_Shifty_0023.gif │ │ │ │ ├── PT_Shifty_0024.gif │ │ │ │ ├── PT_Shifty_0025.gif │ │ │ │ ├── PT_Shifty_0026.gif │ │ │ │ ├── PT_Shifty_0027.gif │ │ │ │ ├── PT_Shifty_0028.gif │ │ │ │ ├── PT_Shifty_0029.gif │ │ │ │ ├── PT_Shifty_0030.gif │ │ │ │ ├── PT_Shifty_0031.gif │ │ │ │ ├── PT_Shifty_0032.gif │ │ │ │ ├── PT_Shifty_0033.gif │ │ │ │ ├── PT_Shifty_0034.gif │ │ │ │ ├── PT_Shifty_0035.gif │ │ │ │ ├── PT_Shifty_0036.gif │ │ │ │ ├── PT_Shifty_0037.gif │ │ │ │ ├── PT_Teddy_0000.gif │ │ │ │ ├── PT_Teddy_0001.gif │ │ │ │ ├── PT_Teddy_0002.gif │ │ │ │ ├── PT_Teddy_0003.gif │ │ │ │ ├── PT_Teddy_0004.gif │ │ │ │ ├── PT_Teddy_0005.gif │ │ │ │ ├── PT_Teddy_0006.gif │ │ │ │ ├── PT_Teddy_0007.gif │ │ │ │ ├── PT_Teddy_0008.gif │ │ │ │ ├── PT_Teddy_0009.gif │ │ │ │ ├── PT_Teddy_0010.gif │ │ │ │ ├── PT_Teddy_0011.gif │ │ │ │ ├── PT_Teddy_0012.gif │ │ │ │ ├── PT_Teddy_0013.gif │ │ │ │ ├── PT_Teddy_0014.gif │ │ │ │ ├── PT_Teddy_0015.gif │ │ │ │ ├── PT_Teddy_0016.gif │ │ │ │ ├── PT_Teddy_0017.gif │ │ │ │ ├── PT_Teddy_0018.gif │ │ │ │ ├── PT_Teddy_0019.gif │ │ │ │ ├── PT_Teddy_0020.gif │ │ │ │ ├── PT_Teddy_0021.gif │ │ │ │ ├── PT_Teddy_0022.gif │ │ │ │ ├── PT_Teddy_0023.gif │ │ │ │ ├── PT_Teddy_0024.gif │ │ │ │ ├── PT_Teddy_0025.gif │ │ │ │ ├── PT_Teddy_0026.gif │ │ │ │ ├── PT_Teddy_0027.gif │ │ │ │ ├── PT_Teddy_0028.gif │ │ │ │ ├── PT_Teddy_0029.gif │ │ │ │ ├── PT_Teddy_0030.gif │ │ │ │ ├── PT_Teddy_0031.gif │ │ │ │ ├── PT_Teddy_0032.gif │ │ │ │ ├── PT_Teddy_0033.gif │ │ │ │ ├── PT_Teddy_0034.gif │ │ │ │ ├── PT_Teddy_0035.gif │ │ │ │ ├── PT_Teddy_0036.gif │ │ │ │ ├── PT_Teddy_0037.gif │ │ │ │ ├── PT_Teddy_0038.gif │ │ │ │ ├── PT_Teddy_0039.gif │ │ │ │ ├── PT_Teddy_0040.gif │ │ │ │ ├── PT_Teddy_0041.gif │ │ │ │ ├── PT_Teddy_0042.gif │ │ │ │ ├── PT_Teddy_0043.gif │ │ │ │ ├── PT_Teddy_0044.gif │ │ │ │ ├── PT_Teddy_0045.gif │ │ │ │ ├── PT_Teddy_0046.gif │ │ │ │ ├── PT_Teddy_0047.gif │ │ │ │ ├── PT_Teddy_0048.gif │ │ │ │ ├── PT_Teddy_0049.gif │ │ │ │ ├── PT_Teddy_0050.gif │ │ │ │ ├── PT_Teddy_0051.gif │ │ │ │ ├── PT_Teddy_0052.gif │ │ │ │ ├── PT_Teddy_0053.gif │ │ │ │ ├── PT_Teddy_0054.gif │ │ │ │ ├── PT_Teddy_0055.gif │ │ │ │ ├── PT_Teddy_0056.gif │ │ │ │ ├── PT_Teddy_0057.gif │ │ │ │ ├── PT_Teddy_0058.gif │ │ │ │ └── PT_Teddy_0059.gif │ │ └── Sequential │ │ │ ├── Sequential.pde │ │ │ └── data │ │ │ ├── PT_anim0000.gif │ │ │ ├── PT_anim0001.gif │ │ │ ├── PT_anim0002.gif │ │ │ ├── PT_anim0003.gif │ │ │ ├── PT_anim0004.gif │ │ │ ├── PT_anim0005.gif │ │ │ ├── PT_anim0006.gif │ │ │ ├── PT_anim0007.gif │ │ │ ├── PT_anim0008.gif │ │ │ ├── PT_anim0009.gif │ │ │ ├── PT_anim0010.gif │ │ │ └── PT_anim0011.gif │ │ ├── Cellular Automata │ │ ├── GameOfLife │ │ │ └── GameOfLife.pde │ │ ├── Spore1 │ │ │ └── Spore1.pde │ │ ├── Spore2 │ │ │ └── Spore2.pde │ │ └── Wolfram │ │ │ ├── CA.pde │ │ │ └── Wolfram.pde │ │ ├── Create Shapes │ │ ├── BeginEndContour │ │ │ └── BeginEndContour.pde │ │ ├── GroupPShape │ │ │ └── GroupPShape.pde │ │ ├── ParticleSystemPShape │ │ │ ├── Particle.pde │ │ │ ├── ParticleSystem.pde │ │ │ ├── ParticleSystemPShape.pde │ │ │ └── data │ │ │ │ └── sprite.png │ │ ├── PathPShape │ │ │ └── PathPShape.pde │ │ ├── PolygonPShape │ │ │ └── PolygonPShape.pde │ │ ├── PolygonPShapeOOP │ │ │ ├── PolygonPShapeOOP.pde │ │ │ └── Star.pde │ │ ├── PolygonPShapeOOP2 │ │ │ ├── Polygon.pde │ │ │ └── PolygonPShapeOOP2.pde │ │ ├── PolygonPShapeOOP3 │ │ │ ├── Polygon.pde │ │ │ └── PolygonPShapeOOP3.pde │ │ ├── PrimitivePShape │ │ │ └── PrimitivePShape.pde │ │ └── WigglePShape │ │ │ ├── WigglePShape.pde │ │ │ └── Wiggler.pde │ │ ├── Curves │ │ └── ArcLengthParametrization │ │ │ ├── ArcLengthParametrization.pde │ │ │ └── BezierCurve.pde │ │ ├── Drawing │ │ ├── ContinuousLines │ │ │ └── ContinuousLines.pde │ │ ├── Pattern │ │ │ └── Pattern.pde │ │ └── Pulses │ │ │ └── Pulses.pde │ │ ├── File IO │ │ ├── DirectoryList │ │ │ └── DirectoryList.pde │ │ ├── LoadFile1 │ │ │ ├── LoadFile1.pde │ │ │ └── data │ │ │ │ └── positions.txt │ │ ├── LoadFile2 │ │ │ ├── LoadFile2.pde │ │ │ ├── Record.pde │ │ │ └── data │ │ │ │ ├── TheSans-Plain-12.vlw │ │ │ │ └── cars2.tsv │ │ ├── SaveFile1 │ │ │ └── SaveFile1.pde │ │ ├── SaveFile2 │ │ │ └── SaveFile2.pde │ │ ├── SaveFrames │ │ │ └── SaveFrames.pde │ │ ├── SaveOneFrame │ │ │ └── SaveOneImage.pde │ │ └── TileImages │ │ │ └── TileImages.pde │ │ ├── Fractals and L-Systems │ │ ├── Koch │ │ │ ├── Koch.pde │ │ │ ├── KochFractal.pde │ │ │ └── KochLine.pde │ │ ├── Mandelbrot │ │ │ └── Mandelbrot.pde │ │ ├── PenroseSnowflake │ │ │ ├── LSystem.pde │ │ │ ├── PenroseSnowflake.pde │ │ │ └── PenroseSnowflakeLSystem.pde │ │ ├── PenroseTile │ │ │ ├── LSystem.pde │ │ │ ├── PenroseLSystem.pde │ │ │ └── PenroseTile.pde │ │ ├── Pentigree │ │ │ ├── LSystem.pde │ │ │ ├── Pentigree.pde │ │ │ └── PentigreeLSystem.pde │ │ └── Tree │ │ │ └── Tree.pde │ │ ├── GUI │ │ ├── Button │ │ │ └── Button.pde │ │ ├── Handles │ │ │ └── Handles.pde │ │ ├── Rollover │ │ │ └── Rollover.pde │ │ └── Scrollbar │ │ │ ├── Scrollbar.pde │ │ │ └── data │ │ │ ├── seedBottom.jpg │ │ │ └── seedTop.jpg │ │ ├── Geometry │ │ ├── Icosahedra │ │ │ ├── Dimension3D.pde │ │ │ ├── Icosahedra.pde │ │ │ ├── Icosahedron.pde │ │ │ └── Shape3D.pde │ │ ├── NoiseSphere │ │ │ └── NoiseSphere.pde │ │ ├── RGBCube │ │ │ └── RGBCube.pde │ │ ├── ShapeTransform │ │ │ └── ShapeTransform.pde │ │ ├── SpaceJunk │ │ │ ├── Cube.pde │ │ │ └── SpaceJunk.pde │ │ ├── Toroid │ │ │ └── Toroid.pde │ │ └── Vertices │ │ │ └── Vertices.pde │ │ ├── Image Processing │ │ ├── Blending │ │ │ ├── Blending.pde │ │ │ └── data │ │ │ │ ├── layer1.jpg │ │ │ │ └── layer2.jpg │ │ ├── Blur │ │ │ ├── Blur.pde │ │ │ └── data │ │ │ │ └── moon.jpg │ │ ├── Brightness │ │ │ ├── Brightness.pde │ │ │ └── data │ │ │ │ └── moon-wide.jpg │ │ ├── Convolution │ │ │ ├── Convolution.pde │ │ │ └── data │ │ │ │ └── moon-wide.jpg │ │ ├── EdgeDetection │ │ │ ├── EdgeDetection.pde │ │ │ └── data │ │ │ │ └── moon.jpg │ │ ├── Explode │ │ │ ├── Explode.pde │ │ │ └── data │ │ │ │ └── eames.jpg │ │ ├── Extrusion │ │ │ ├── Extrusion.pde │ │ │ └── data │ │ │ │ └── ystone08.jpg │ │ ├── Histogram │ │ │ ├── Histogram.pde │ │ │ └── data │ │ │ │ └── frontier.jpg │ │ ├── LinearImage │ │ │ ├── LinearImage.pde │ │ │ └── data │ │ │ │ └── sea.jpg │ │ ├── PixelArray │ │ │ ├── PixelArray.pde │ │ │ └── data │ │ │ │ └── sea.jpg │ │ └── Zoom │ │ │ ├── Zoom.pde │ │ │ └── data │ │ │ └── ystone08.jpg │ │ ├── Interaction │ │ ├── Follow1 │ │ │ └── Follow1.pde │ │ ├── Follow2 │ │ │ └── Follow2.pde │ │ ├── Follow3 │ │ │ └── Follow3.pde │ │ ├── Reach1 │ │ │ └── Reach1.pde │ │ ├── Reach2 │ │ │ └── Reach2.pde │ │ ├── Reach3 │ │ │ └── Reach3.pde │ │ └── Tickle │ │ │ ├── Tickle.pde │ │ │ └── data │ │ │ └── SourceCodePro-Regular.ttf │ │ ├── Motion │ │ ├── Bounce │ │ │ └── Bounce.pde │ │ ├── BouncyBubbles │ │ │ └── BouncyBubbles.pde │ │ ├── Brownian │ │ │ └── Brownian.pde │ │ ├── CircleCollision │ │ │ ├── Ball.pde │ │ │ └── CircleCollision.pde │ │ ├── CubesWithinCube │ │ │ ├── Cube.pde │ │ │ └── CubesWithinCube.pde │ │ ├── Linear │ │ │ └── Linear.pde │ │ ├── Morph │ │ │ └── Morph.pde │ │ ├── MovingOnCurves │ │ │ └── MovingOnCurves.pde │ │ ├── Reflection1 │ │ │ └── Reflection1.pde │ │ └── Reflection2 │ │ │ ├── Ground.pde │ │ │ ├── Orb.pde │ │ │ └── Reflection2.pde │ │ ├── Shaders │ │ ├── BlurFilter │ │ │ ├── BlurFilter.pde │ │ │ └── data │ │ │ │ └── blur.glsl │ │ ├── Conway │ │ │ ├── Conway.pde │ │ │ └── data │ │ │ │ └── conway.glsl │ │ ├── CustomBlend │ │ │ ├── CustomBlend.pde │ │ │ └── data │ │ │ │ ├── burn.glsl │ │ │ │ ├── difference.glsl │ │ │ │ ├── dodge.glsl │ │ │ │ ├── leaves.jpg │ │ │ │ ├── moonwalk.jpg │ │ │ │ └── overlay.glsl │ │ ├── Deform │ │ │ ├── Deform.pde │ │ │ └── data │ │ │ │ ├── deform.glsl │ │ │ │ └── tex1.jpg │ │ ├── DomeProjection │ │ │ ├── CubeMapUtils.pde │ │ │ ├── DomeProjection.pde │ │ │ └── data │ │ │ │ ├── cubemapfrag.glsl │ │ │ │ └── cubemapvert.glsl │ │ ├── EdgeDetect │ │ │ ├── EdgeDetect.pde │ │ │ └── data │ │ │ │ ├── edges.glsl │ │ │ │ └── leaves.jpg │ │ ├── EdgeFilter │ │ │ ├── EdgeFilter.pde │ │ │ └── data │ │ │ │ └── edges.glsl │ │ ├── GlossyFishEye │ │ │ ├── GlossyFishEye.pde │ │ │ └── data │ │ │ │ ├── FishEye.glsl │ │ │ │ ├── GlossyFrag.glsl │ │ │ │ └── GlossyVert.glsl │ │ ├── ImageMask │ │ │ ├── ImageMask.pde │ │ │ └── data │ │ │ │ ├── leaves.jpg │ │ │ │ └── mask.glsl │ │ ├── InfiniteTiles │ │ │ ├── InfiniteTiles.pde │ │ │ └── data │ │ │ │ ├── penrose.jpg │ │ │ │ └── scroller.glsl │ │ ├── Landscape │ │ │ ├── Landscape.pde │ │ │ └── data │ │ │ │ └── landscape.glsl │ │ ├── Monjori │ │ │ ├── Monjori.pde │ │ │ └── data │ │ │ │ └── monjori.glsl │ │ ├── Nebula │ │ │ ├── Nebula.pde │ │ │ └── data │ │ │ │ └── nebula.glsl │ │ ├── SepBlur │ │ │ ├── SepBlur.pde │ │ │ └── data │ │ │ │ └── blur.glsl │ │ └── ToonShading │ │ │ ├── ToonShading.pde │ │ │ └── data │ │ │ ├── ToonFrag.glsl │ │ │ └── ToonVert.glsl │ │ ├── Simulate │ │ ├── Flocking │ │ │ ├── Boid.pde │ │ │ ├── Flock.pde │ │ │ └── Flocking.pde │ │ ├── ForcesWithVectors │ │ │ ├── ForcesWithVectors.pde │ │ │ ├── Liquid.pde │ │ │ └── Mover.pde │ │ ├── GravitationalAttraction3D │ │ │ ├── GravitationalAttraction3D.pde │ │ │ ├── Planet.pde │ │ │ └── Sun.pde │ │ ├── MultipleParticleSystems │ │ │ ├── CrazyParticle.pde │ │ │ ├── MultipleParticleSystems.pde │ │ │ ├── Particle.pde │ │ │ └── ParticleSystem.pde │ │ ├── SimpleParticleSystem │ │ │ ├── Particle.pde │ │ │ ├── ParticleSystem.pde │ │ │ └── SimpleParticleSystem.pde │ │ ├── SmokeParticleSystem │ │ │ ├── Particle.pde │ │ │ ├── ParticleSystem.pde │ │ │ ├── SmokeParticleSystem.pde │ │ │ └── data │ │ │ │ ├── texture.gif │ │ │ │ └── texture.png │ │ └── SoftBody │ │ │ └── SoftBody.pde │ │ ├── Textures │ │ ├── TextureCube │ │ │ ├── TextureCube.pde │ │ │ └── data │ │ │ │ ├── berlin-1.jpg │ │ │ │ └── uvtex.jpg │ │ ├── TextureCylinder │ │ │ ├── TextureCylinder.pde │ │ │ └── data │ │ │ │ └── berlin-1.jpg │ │ ├── TextureQuad │ │ │ ├── TextureQuad.pde │ │ │ └── data │ │ │ │ └── berlin-1.jpg │ │ ├── TextureSphere │ │ │ ├── TextureSphere.pde │ │ │ └── data │ │ │ │ └── world32k.jpg │ │ └── TextureTriangle │ │ │ ├── TextureTriangle.pde │ │ │ └── data │ │ │ └── berlin-1.jpg │ │ └── Vectors │ │ ├── AccelerationWithVectors │ │ ├── AccelerationWithVectors.pde │ │ └── Mover.pde │ │ ├── BouncingBall │ │ └── BouncingBall.pde │ │ └── VectorMath │ │ └── VectorMath.pde ├── examples_basics.xml ├── examples_p5 │ ├── Basics │ │ ├── Arrays │ │ │ ├── Array │ │ │ │ └── Array.js │ │ │ ├── Array2D │ │ │ │ └── Array2D.js │ │ │ └── ArrayObjects │ │ │ │ ├── ArrayObjects.js │ │ │ │ └── Module.js │ │ ├── Color │ │ │ ├── Brightness │ │ │ │ └── Brightness.js │ │ │ ├── ColorVariables │ │ │ │ └── ColorVariables.js │ │ │ ├── Hue │ │ │ │ └── Hue.js │ │ │ ├── LinearGradient │ │ │ │ └── LinearGradient.js │ │ │ ├── RadialGradient │ │ │ │ └── RadialGradient.js │ │ │ ├── Relativity │ │ │ │ └── Relativity.js │ │ │ ├── Saturation │ │ │ │ └── Saturation.js │ │ │ └── WaveGradient │ │ │ │ └── WaveGradient.js │ │ ├── Control │ │ │ ├── Conditionals1 │ │ │ │ └── Conditionals1.js │ │ │ ├── Conditionals2 │ │ │ │ └── Conditionals2.js │ │ │ ├── EmbeddedIteration │ │ │ │ └── EmbeddedIteration.js │ │ │ ├── Iteration │ │ │ │ └── Iteration.js │ │ │ └── LogicalOperators │ │ │ │ └── LogicalOperators.js │ │ ├── Data │ │ │ ├── CharactersStrings │ │ │ │ └── CharactersStrings.js │ │ │ ├── DatatypeConversion │ │ │ │ └── DatatypeConversion.js │ │ │ ├── IntegersFloats │ │ │ │ └── IntegersFloats.js │ │ │ ├── TrueFalse │ │ │ │ └── TrueFalse.js │ │ │ ├── VariableScope │ │ │ │ └── VariableScope.js │ │ │ └── Variables │ │ │ │ └── Variables.js │ │ ├── Form │ │ │ ├── Bezier │ │ │ │ └── Bezier.js │ │ │ ├── PieChart │ │ │ │ └── PieChart.js │ │ │ ├── PointsLines │ │ │ │ └── PointsLines.js │ │ │ ├── RegularPolygon │ │ │ │ └── RegularPolygon.js │ │ │ ├── ShapePrimitives │ │ │ │ └── ShapePrimitives.js │ │ │ ├── Star │ │ │ │ └── Star.js │ │ │ └── TriangleStrip │ │ │ │ └── TriangleStrip.js │ │ ├── Image │ │ │ ├── Alphamask │ │ │ │ ├── Alphamask.js │ │ │ │ ├── data │ │ │ │ │ ├── mask.jpg │ │ │ │ │ ├── mask.png │ │ │ │ │ └── moonwalk.jpg │ │ │ │ └── index.html │ │ │ ├── BackgroundImage │ │ │ │ ├── BackgroundImage.js │ │ │ │ ├── data │ │ │ │ │ └── moonwalk.jpg │ │ │ │ └── index.html │ │ │ ├── CreateImage │ │ │ │ ├── CreateImage.js │ │ │ │ └── index.html │ │ │ ├── LoadDisplayImage │ │ │ │ ├── LoadDisplayImage.js │ │ │ │ ├── data │ │ │ │ │ └── moonwalk.jpg │ │ │ │ └── index.html │ │ │ ├── Pointillism │ │ │ │ ├── Pointillism.js │ │ │ │ ├── data │ │ │ │ │ └── moonwalk.jpg │ │ │ │ └── index.html │ │ │ ├── RequestImage │ │ │ │ ├── RequestImage.js │ │ │ │ ├── data │ │ │ │ │ ├── PT_anim0000.gif │ │ │ │ │ ├── PT_anim0001.gif │ │ │ │ │ ├── PT_anim0002.gif │ │ │ │ │ ├── PT_anim0003.gif │ │ │ │ │ ├── PT_anim0004.gif │ │ │ │ │ ├── PT_anim0005.gif │ │ │ │ │ ├── PT_anim0006.gif │ │ │ │ │ ├── PT_anim0007.gif │ │ │ │ │ ├── PT_anim0008.gif │ │ │ │ │ ├── PT_anim0009.gif │ │ │ │ │ ├── PT_anim0010.gif │ │ │ │ │ └── PT_anim0011.gif │ │ │ │ └── index.html │ │ │ └── Transparency │ │ │ │ ├── Transparency.js │ │ │ │ ├── data │ │ │ │ └── moonwalk.jpg │ │ │ │ └── index.html │ │ ├── Input │ │ │ ├── Clock │ │ │ │ └── Clock.js │ │ │ ├── Constrain │ │ │ │ └── Constrain.js │ │ │ ├── Easing │ │ │ │ └── Easing.js │ │ │ ├── Keyboard │ │ │ │ └── Keyboard.js │ │ │ ├── KeyboardFunctions │ │ │ │ └── KeyboardFunctions.js │ │ │ ├── Milliseconds │ │ │ │ └── Milliseconds.js │ │ │ ├── Mouse1D │ │ │ │ └── Mouse1D.js │ │ │ ├── Mouse2D │ │ │ │ └── Mouse2D.js │ │ │ ├── MouseFunctions │ │ │ │ └── MouseFunctions.js │ │ │ ├── MousePress │ │ │ │ └── MousePress.js │ │ │ ├── MouseSignals │ │ │ │ └── MouseSignals.js │ │ │ └── StoringInput │ │ │ │ └── StoringInput.js │ │ ├── Math │ │ │ ├── AdditiveWave │ │ │ │ └── AdditiveWave.js │ │ │ ├── Arctangent │ │ │ │ └── Arctangent.js │ │ │ ├── Distance1D │ │ │ │ └── Distance1D.js │ │ │ ├── Distance2D │ │ │ │ └── Distance2D.js │ │ │ ├── DoubleRandom │ │ │ │ └── DoubleRandom.js │ │ │ ├── Graphing2DEquation │ │ │ │ └── Graphing2DEquation.js │ │ │ ├── IncrementDecrement │ │ │ │ └── IncrementDecrement.js │ │ │ ├── Interpolate │ │ │ │ └── Interpolate.js │ │ │ ├── Map │ │ │ │ └── Map.js │ │ │ ├── Noise1D │ │ │ │ └── Noise1D.js │ │ │ ├── Noise2D │ │ │ │ └── Noise2D.js │ │ │ ├── Noise3D │ │ │ │ └── Noise3D.js │ │ │ ├── NoiseWave │ │ │ │ └── NoiseWave.js │ │ │ ├── OperatorPrecedence │ │ │ │ └── OperatorPrecedence.js │ │ │ ├── PolarToCartesian │ │ │ │ └── PolarToCartesian.js │ │ │ ├── Random │ │ │ │ └── Random.js │ │ │ ├── RandomGaussian │ │ │ │ └── RandomGaussian.js │ │ │ ├── Sine │ │ │ │ └── Sine.js │ │ │ ├── SineCosine │ │ │ │ └── SineCosine.js │ │ │ └── SineWave │ │ │ │ └── SineWave.js │ │ ├── Objects │ │ │ ├── CompositeObjects │ │ │ │ ├── CompositeObjects.js │ │ │ │ ├── Egg.js │ │ │ │ ├── EggRing.js │ │ │ │ └── Ring.js │ │ │ ├── Inheritance │ │ │ │ └── Inheritance.js │ │ │ ├── MultipleConstructors │ │ │ │ └── MultipleConstructors.js │ │ │ └── Objects │ │ │ │ └── Objects.js │ │ ├── Structure │ │ │ ├── Coordinates │ │ │ │ └── Coordinates.js │ │ │ ├── CreateGraphics │ │ │ │ └── CreateGraphics.js │ │ │ ├── Functions │ │ │ │ └── Functions.js │ │ │ ├── Loop │ │ │ │ └── Loop.js │ │ │ ├── NoLoop │ │ │ │ └── NoLoop.js │ │ │ ├── Recursion │ │ │ │ └── Recursion.js │ │ │ ├── Redraw │ │ │ │ └── Redraw.js │ │ │ ├── SetupDraw │ │ │ │ └── SetupDraw.js │ │ │ ├── StatementsComments │ │ │ │ └── StatementsComments.js │ │ │ └── WidthHeight │ │ │ │ └── WidthHeight.js │ │ ├── Transform │ │ │ ├── Arm │ │ │ │ └── Arm.js │ │ │ ├── Rotate │ │ │ │ └── Rotate.js │ │ │ ├── Scale │ │ │ │ └── Scale.js │ │ │ └── Translate │ │ │ │ └── Translate.js │ │ ├── Typography │ │ │ ├── Letters │ │ │ │ └── Letters.js │ │ │ ├── TextRotation │ │ │ │ └── TextRotation.js │ │ │ └── Words │ │ │ │ └── Words.js │ │ └── Web │ │ │ ├── EmbeddedLinks │ │ │ └── EmbeddedLinks.js │ │ │ └── LoadingImages │ │ │ └── LoadingImages.js │ ├── Topics │ │ ├── Advanced Data │ │ │ ├── ArrayListClass │ │ │ │ ├── ArrayListClass.js │ │ │ │ └── Ball.js │ │ │ ├── IntListLottery │ │ │ │ ├── IntListLottery.js │ │ │ │ └── NumberList.js │ │ │ ├── LoadSaveJSON │ │ │ │ ├── Bubble.js │ │ │ │ ├── LoadSaveJSON.js │ │ │ │ ├── data │ │ │ │ │ └── data.json │ │ │ │ └── testing.html │ │ │ ├── LoadSaveTable │ │ │ │ ├── Bubble.js │ │ │ │ ├── LoadSaveTable.js │ │ │ │ ├── data │ │ │ │ │ └── data.csv │ │ │ │ └── testing.html │ │ │ ├── LoadSaveXML │ │ │ │ ├── Bubble.js │ │ │ │ ├── LoadSaveXML.js │ │ │ │ ├── data │ │ │ │ │ └── data.xml │ │ │ │ └── testing.html │ │ │ └── XMLYahooWeather │ │ │ │ ├── XMLYahooWeather.js │ │ │ │ └── data │ │ │ │ └── Merriweather-Light.ttf │ │ ├── Animation │ │ │ ├── AnimatedSprite │ │ │ │ ├── AnimatedSprite.js │ │ │ │ ├── Animation.js │ │ │ │ ├── data │ │ │ │ │ ├── PT_Shifty_0000.gif │ │ │ │ │ ├── PT_Shifty_0001.gif │ │ │ │ │ ├── PT_Shifty_0002.gif │ │ │ │ │ ├── PT_Shifty_0003.gif │ │ │ │ │ ├── PT_Shifty_0004.gif │ │ │ │ │ ├── PT_Shifty_0005.gif │ │ │ │ │ ├── PT_Shifty_0006.gif │ │ │ │ │ ├── PT_Shifty_0007.gif │ │ │ │ │ ├── PT_Shifty_0008.gif │ │ │ │ │ ├── PT_Shifty_0009.gif │ │ │ │ │ ├── PT_Shifty_0010.gif │ │ │ │ │ ├── PT_Shifty_0011.gif │ │ │ │ │ ├── PT_Shifty_0012.gif │ │ │ │ │ ├── PT_Shifty_0013.gif │ │ │ │ │ ├── PT_Shifty_0014.gif │ │ │ │ │ ├── PT_Shifty_0015.gif │ │ │ │ │ ├── PT_Shifty_0016.gif │ │ │ │ │ ├── PT_Shifty_0017.gif │ │ │ │ │ ├── PT_Shifty_0018.gif │ │ │ │ │ ├── PT_Shifty_0019.gif │ │ │ │ │ ├── PT_Shifty_0020.gif │ │ │ │ │ ├── PT_Shifty_0021.gif │ │ │ │ │ ├── PT_Shifty_0022.gif │ │ │ │ │ ├── PT_Shifty_0023.gif │ │ │ │ │ ├── PT_Shifty_0024.gif │ │ │ │ │ ├── PT_Shifty_0025.gif │ │ │ │ │ ├── PT_Shifty_0026.gif │ │ │ │ │ ├── PT_Shifty_0027.gif │ │ │ │ │ ├── PT_Shifty_0028.gif │ │ │ │ │ ├── PT_Shifty_0029.gif │ │ │ │ │ ├── PT_Shifty_0030.gif │ │ │ │ │ ├── PT_Shifty_0031.gif │ │ │ │ │ ├── PT_Shifty_0032.gif │ │ │ │ │ ├── PT_Shifty_0033.gif │ │ │ │ │ ├── PT_Shifty_0034.gif │ │ │ │ │ ├── PT_Shifty_0035.gif │ │ │ │ │ ├── PT_Shifty_0036.gif │ │ │ │ │ ├── PT_Shifty_0037.gif │ │ │ │ │ ├── PT_Teddy_0000.gif │ │ │ │ │ ├── PT_Teddy_0001.gif │ │ │ │ │ ├── PT_Teddy_0002.gif │ │ │ │ │ ├── PT_Teddy_0003.gif │ │ │ │ │ ├── PT_Teddy_0004.gif │ │ │ │ │ ├── PT_Teddy_0005.gif │ │ │ │ │ ├── PT_Teddy_0006.gif │ │ │ │ │ ├── PT_Teddy_0007.gif │ │ │ │ │ ├── PT_Teddy_0008.gif │ │ │ │ │ ├── PT_Teddy_0009.gif │ │ │ │ │ ├── PT_Teddy_0010.gif │ │ │ │ │ ├── PT_Teddy_0011.gif │ │ │ │ │ ├── PT_Teddy_0012.gif │ │ │ │ │ ├── PT_Teddy_0013.gif │ │ │ │ │ ├── PT_Teddy_0014.gif │ │ │ │ │ ├── PT_Teddy_0015.gif │ │ │ │ │ ├── PT_Teddy_0016.gif │ │ │ │ │ ├── PT_Teddy_0017.gif │ │ │ │ │ ├── PT_Teddy_0018.gif │ │ │ │ │ ├── PT_Teddy_0019.gif │ │ │ │ │ ├── PT_Teddy_0020.gif │ │ │ │ │ ├── PT_Teddy_0021.gif │ │ │ │ │ ├── PT_Teddy_0022.gif │ │ │ │ │ ├── PT_Teddy_0023.gif │ │ │ │ │ ├── PT_Teddy_0024.gif │ │ │ │ │ ├── PT_Teddy_0025.gif │ │ │ │ │ ├── PT_Teddy_0026.gif │ │ │ │ │ ├── PT_Teddy_0027.gif │ │ │ │ │ ├── PT_Teddy_0028.gif │ │ │ │ │ ├── PT_Teddy_0029.gif │ │ │ │ │ ├── PT_Teddy_0030.gif │ │ │ │ │ ├── PT_Teddy_0031.gif │ │ │ │ │ ├── PT_Teddy_0032.gif │ │ │ │ │ ├── PT_Teddy_0033.gif │ │ │ │ │ ├── PT_Teddy_0034.gif │ │ │ │ │ ├── PT_Teddy_0035.gif │ │ │ │ │ ├── PT_Teddy_0036.gif │ │ │ │ │ ├── PT_Teddy_0037.gif │ │ │ │ │ ├── PT_Teddy_0038.gif │ │ │ │ │ ├── PT_Teddy_0039.gif │ │ │ │ │ ├── PT_Teddy_0040.gif │ │ │ │ │ ├── PT_Teddy_0041.gif │ │ │ │ │ ├── PT_Teddy_0042.gif │ │ │ │ │ ├── PT_Teddy_0043.gif │ │ │ │ │ ├── PT_Teddy_0044.gif │ │ │ │ │ ├── PT_Teddy_0045.gif │ │ │ │ │ ├── PT_Teddy_0046.gif │ │ │ │ │ ├── PT_Teddy_0047.gif │ │ │ │ │ ├── PT_Teddy_0048.gif │ │ │ │ │ ├── PT_Teddy_0049.gif │ │ │ │ │ ├── PT_Teddy_0050.gif │ │ │ │ │ ├── PT_Teddy_0051.gif │ │ │ │ │ ├── PT_Teddy_0052.gif │ │ │ │ │ ├── PT_Teddy_0053.gif │ │ │ │ │ ├── PT_Teddy_0054.gif │ │ │ │ │ ├── PT_Teddy_0055.gif │ │ │ │ │ ├── PT_Teddy_0056.gif │ │ │ │ │ ├── PT_Teddy_0057.gif │ │ │ │ │ ├── PT_Teddy_0058.gif │ │ │ │ │ └── PT_Teddy_0059.gif │ │ │ │ └── testing.html │ │ │ └── Sequential │ │ │ │ ├── Sequential.js │ │ │ │ ├── data │ │ │ │ ├── PT_anim0000.gif │ │ │ │ ├── PT_anim0001.gif │ │ │ │ ├── PT_anim0002.gif │ │ │ │ ├── PT_anim0003.gif │ │ │ │ ├── PT_anim0004.gif │ │ │ │ ├── PT_anim0005.gif │ │ │ │ ├── PT_anim0006.gif │ │ │ │ ├── PT_anim0007.gif │ │ │ │ ├── PT_anim0008.gif │ │ │ │ ├── PT_anim0009.gif │ │ │ │ ├── PT_anim0010.gif │ │ │ │ └── PT_anim0011.gif │ │ │ │ └── testing.html │ │ ├── Cellular Automata │ │ │ ├── GameOfLife │ │ │ │ └── GameOfLife.js │ │ │ ├── Spore1 │ │ │ │ └── Spore1.js │ │ │ └── Wolfram │ │ │ │ ├── CA.js │ │ │ │ └── Wolfram.js │ │ ├── Drawing │ │ │ ├── ContinuousLines │ │ │ │ └── ContinuousLines.js │ │ │ ├── Pattern │ │ │ │ └── Pattern.js │ │ │ └── Pulses │ │ │ │ └── Pulses.js │ │ ├── File IO │ │ │ ├── LoadFile1 │ │ │ │ ├── LoadFile1.js │ │ │ │ ├── data │ │ │ │ │ └── positions.txt │ │ │ │ └── testing.html │ │ │ ├── LoadFile2 │ │ │ │ ├── LoadFile2.js │ │ │ │ ├── Record.js │ │ │ │ ├── data │ │ │ │ │ ├── TheSans-Plain-12.vlw │ │ │ │ │ └── cars2.tsv │ │ │ │ └── testing.html │ │ │ ├── SaveFile1 │ │ │ │ └── SaveFile1.js │ │ │ └── SaveOneFrame │ │ │ │ └── SaveOneImage.js │ │ ├── Fractals and L-Systems │ │ │ ├── Koch │ │ │ │ ├── Koch.js │ │ │ │ ├── KochFractal.js │ │ │ │ └── KochLine.js │ │ │ ├── Mandelbrot │ │ │ │ └── Mandelbrot.js │ │ │ ├── PenroseSnowflake │ │ │ │ ├── LSystem.js │ │ │ │ ├── PenroseSnowflake.js │ │ │ │ └── PenroseSnowflakeLSystem.js │ │ │ ├── PenroseTile │ │ │ │ ├── LSystem.js │ │ │ │ ├── PenroseLSystem.js │ │ │ │ └── PenroseTile.js │ │ │ ├── Pentigree │ │ │ │ ├── LSystem.js │ │ │ │ ├── Pentigree.js │ │ │ │ └── PentigreeLSystem.js │ │ │ └── Tree │ │ │ │ └── Tree.js │ │ ├── GUI │ │ │ ├── Button │ │ │ │ └── Button.js │ │ │ ├── Handles │ │ │ │ └── Handles.js │ │ │ ├── Rollover │ │ │ │ └── Rollover.js │ │ │ └── Scrollbar │ │ │ │ ├── Scrollbar.js │ │ │ │ ├── data │ │ │ │ ├── seedBottom.jpg │ │ │ │ └── seedTop.jpg │ │ │ │ └── testing.html │ │ ├── Image Processing │ │ │ ├── Blur │ │ │ │ ├── Blur.js │ │ │ │ ├── data │ │ │ │ │ └── moon.jpg │ │ │ │ └── testing.html │ │ │ ├── Brightness │ │ │ │ ├── Brightness.js │ │ │ │ ├── data │ │ │ │ │ └── moon-wide.jpg │ │ │ │ └── testing.html │ │ │ ├── Convolution │ │ │ │ ├── Convolution.js │ │ │ │ ├── data │ │ │ │ │ └── moon-wide.jpg │ │ │ │ └── testing.html │ │ │ ├── EdgeDetection │ │ │ │ ├── EdgeDetection.js │ │ │ │ ├── data │ │ │ │ │ └── moon.jpg │ │ │ │ └── testing.html │ │ │ ├── Histogram │ │ │ │ ├── Histogram.js │ │ │ │ ├── data │ │ │ │ │ └── frontier.jpg │ │ │ │ └── testing.html │ │ │ ├── LinearImage │ │ │ │ ├── LinearImage.js │ │ │ │ ├── data │ │ │ │ │ └── sea.jpg │ │ │ │ └── testing.html │ │ │ └── PixelArray │ │ │ │ ├── PixelArray.js │ │ │ │ ├── data │ │ │ │ └── sea.jpg │ │ │ │ └── testing.html │ │ ├── Interaction │ │ │ ├── Follow1 │ │ │ │ └── Follow1.js │ │ │ ├── Follow2 │ │ │ │ └── Follow2.js │ │ │ ├── Follow3 │ │ │ │ └── Follow3.js │ │ │ ├── Reach1 │ │ │ │ └── Reach1.js │ │ │ ├── Reach2 │ │ │ │ └── Reach2.js │ │ │ ├── Reach3 │ │ │ │ └── Reach3.js │ │ │ └── Tickle │ │ │ │ └── Tickle.js │ │ ├── Motion │ │ │ ├── Bounce │ │ │ │ └── Bounce.js │ │ │ ├── BouncyBubbles │ │ │ │ └── BouncyBubbles.js │ │ │ ├── Brownian │ │ │ │ └── Brownian.js │ │ │ ├── CircleCollision │ │ │ │ ├── Ball.js │ │ │ │ └── CircleCollision.js │ │ │ ├── Linear │ │ │ │ └── Linear.js │ │ │ ├── Morph │ │ │ │ └── Morph.js │ │ │ ├── MovingOnCurves │ │ │ │ └── MovingOnCurves.js │ │ │ ├── Reflection1 │ │ │ │ └── Reflection1.js │ │ │ └── Reflection2 │ │ │ │ ├── Ground.js │ │ │ │ ├── Orb.js │ │ │ │ └── Reflection2.js │ │ ├── Simulate │ │ │ ├── Chain │ │ │ │ └── Chain.js │ │ │ ├── Flocking │ │ │ │ ├── Boid.js │ │ │ │ ├── Flock.js │ │ │ │ └── Flocking.js │ │ │ ├── ForcesWithVectors │ │ │ │ ├── ForcesWithVectors.js │ │ │ │ ├── Liquid.js │ │ │ │ └── Mover.js │ │ │ ├── MultipleParticleSystems │ │ │ │ ├── MultipleParticleSystems.js │ │ │ │ ├── Particle.js │ │ │ │ ├── ParticleCrazy.js │ │ │ │ └── ParticleSystem.js │ │ │ ├── SimpleParticleSystem │ │ │ │ ├── Particle.js │ │ │ │ ├── ParticleSystem.js │ │ │ │ └── SimpleParticleSystem.js │ │ │ ├── SmokeParticleSystem │ │ │ │ ├── Particle.js │ │ │ │ ├── ParticleSystem.js │ │ │ │ ├── SmokeParticleSystem.js │ │ │ │ ├── data │ │ │ │ │ ├── texture.gif │ │ │ │ │ └── texture.png │ │ │ │ └── testing.html │ │ │ ├── Spring │ │ │ │ └── Spring.js │ │ │ └── Springs │ │ │ │ └── Springs.js │ │ └── Vectors │ │ │ ├── AccelerationWithVectors │ │ │ ├── AccelerationWithVectors.js │ │ │ └── Mover.js │ │ │ ├── BouncingBall │ │ │ └── BouncingBall.js │ │ │ └── VectorMath │ │ │ └── VectorMath.js │ └── testing.html ├── examples_topics.xml ├── gswp_2e │ ├── examples.properties │ └── examples │ │ ├── 02_Start │ │ ├── Ex_02_01 │ │ │ └── Ex_02_01.pde │ │ └── Ex_02_02 │ │ │ └── Ex_02_02.pde │ │ ├── 03_Draw │ │ ├── Ex_03_01 │ │ │ └── Ex_03_01.pde │ │ ├── Ex_03_02 │ │ │ └── Ex_03_02.pde │ │ ├── Ex_03_03 │ │ │ └── Ex_03_03.pde │ │ ├── Ex_03_04 │ │ │ └── Ex_03_04.pde │ │ ├── Ex_03_05 │ │ │ └── Ex_03_05.pde │ │ ├── Ex_03_06 │ │ │ └── Ex_03_06.pde │ │ ├── Ex_03_07 │ │ │ └── Ex_03_07.pde │ │ ├── Ex_03_08 │ │ │ └── Ex_03_08.pde │ │ ├── Ex_03_09 │ │ │ └── Ex_03_09.pde │ │ ├── Ex_03_10 │ │ │ └── Ex_03_10.pde │ │ ├── Ex_03_11 │ │ │ └── Ex_03_11.pde │ │ ├── Ex_03_12 │ │ │ └── Ex_03_12.pde │ │ ├── Ex_03_13 │ │ │ └── Ex_03_13.pde │ │ ├── Ex_03_14 │ │ │ ├── Ex_03_14.pde │ │ │ └── Ex_03_14.tif │ │ ├── Ex_03_15 │ │ │ └── Ex_03_15.pde │ │ ├── Ex_03_16 │ │ │ └── Ex_03_16.pde │ │ ├── Ex_03_17 │ │ │ └── Ex_03_17.pde │ │ ├── Ex_03_18 │ │ │ └── Ex_03_18.pde │ │ ├── Ex_03_19 │ │ │ └── Ex_03_19.pde │ │ ├── Ex_03_20 │ │ │ └── Ex_03_20.pde │ │ └── Ex_03_21 │ │ │ └── Ex_03_21.pde │ │ ├── 04_Variables │ │ ├── Ex_04_01 │ │ │ └── Ex_04_01.pde │ │ ├── Ex_04_02 │ │ │ └── Ex_04_02.pde │ │ ├── Ex_04_03 │ │ │ └── Ex_04_03.pde │ │ ├── Ex_04_04 │ │ │ └── Ex_04_04.pde │ │ ├── Ex_04_05 │ │ │ └── Ex_04_05.pde │ │ ├── Ex_04_06 │ │ │ └── Ex_04_06.pde │ │ ├── Ex_04_07 │ │ │ └── Ex_04_07.pde │ │ ├── Ex_04_08 │ │ │ └── Ex_04_08.pde │ │ ├── Ex_04_09 │ │ │ └── Ex_04_09.pde │ │ ├── Ex_04_10 │ │ │ └── Ex_04_10.pde │ │ ├── Ex_04_11 │ │ │ └── Ex_04_11.pde │ │ ├── Ex_04_12 │ │ │ └── Ex_04_12.pde │ │ └── Ex_04_13 │ │ │ └── Ex_04_13.pde │ │ ├── 05_Response │ │ ├── Ex_05_01 │ │ │ └── Ex_05_01.pde │ │ ├── Ex_05_02 │ │ │ └── Ex_05_02.pde │ │ ├── Ex_05_03 │ │ │ └── Ex_05_03.pde │ │ ├── Ex_05_04 │ │ │ └── Ex_05_04.pde │ │ ├── Ex_05_05 │ │ │ └── Ex_05_05.pde │ │ ├── Ex_05_06 │ │ │ └── Ex_05_06.pde │ │ ├── Ex_05_07 │ │ │ └── Ex_05_07.pde │ │ ├── Ex_05_08 │ │ │ └── Ex_05_08.pde │ │ ├── Ex_05_09 │ │ │ └── Ex_05_09.pde │ │ ├── Ex_05_10 │ │ │ └── Ex_05_10.pde │ │ ├── Ex_05_11 │ │ │ └── Ex_05_11.pde │ │ ├── Ex_05_12 │ │ │ └── Ex_05_12.pde │ │ ├── Ex_05_13 │ │ │ └── Ex_05_13.pde │ │ ├── Ex_05_14 │ │ │ └── Ex_05_14.pde │ │ ├── Ex_05_15 │ │ │ └── Ex_05_15.pde │ │ ├── Ex_05_16 │ │ │ └── Ex_05_16.pde │ │ ├── Ex_05_17 │ │ │ └── Ex_05_17.pde │ │ ├── Ex_05_18 │ │ │ └── Ex_05_18.pde │ │ ├── Ex_05_19 │ │ │ └── Ex_05_19.pde │ │ ├── Ex_05_20 │ │ │ └── Ex_05_20.pde │ │ └── Ex_05_21 │ │ │ └── Ex_05_21.pde │ │ ├── 06_Transform │ │ ├── Ex_06_01 │ │ │ └── Ex_06_01.pde │ │ ├── Ex_06_02 │ │ │ └── Ex_06_02.pde │ │ ├── Ex_06_03 │ │ │ └── Ex_06_03.pde │ │ ├── Ex_06_04 │ │ │ └── Ex_06_04.pde │ │ ├── Ex_06_05 │ │ │ └── Ex_06_05.pde │ │ ├── Ex_06_06 │ │ │ └── Ex_06_06.pde │ │ ├── Ex_06_07 │ │ │ └── Ex_06_07.pde │ │ ├── Ex_06_08 │ │ │ └── Ex_06_08.pde │ │ ├── Ex_06_09 │ │ │ └── Ex_06_09.pde │ │ └── Ex_06_10 │ │ │ └── Ex_06_10.pde │ │ ├── 07_Media │ │ ├── Ex_07_01 │ │ │ ├── Ex_07_01.pde │ │ │ └── data │ │ │ │ └── lunar.jpg │ │ ├── Ex_07_02 │ │ │ ├── Ex_07_02.pde │ │ │ └── data │ │ │ │ ├── capsule.jpg │ │ │ │ └── lunar.jpg │ │ ├── Ex_07_03 │ │ │ ├── Ex_07_03.pde │ │ │ └── data │ │ │ │ └── lunar.jpg │ │ ├── Ex_07_04 │ │ │ ├── Ex_07_04.pde │ │ │ └── data │ │ │ │ └── clouds.gif │ │ ├── Ex_07_05 │ │ │ ├── Ex_07_05.pde │ │ │ └── data │ │ │ │ └── clouds.png │ │ ├── Ex_07_06 │ │ │ ├── Ex_07_06.pde │ │ │ └── data │ │ │ │ └── SourceCodePro-Regular.ttf │ │ ├── Ex_07_07 │ │ │ ├── Ex_07_07.pde │ │ │ └── data │ │ │ │ └── SourceCodePro-Regular.ttf │ │ ├── Ex_07_08 │ │ │ ├── Ex_07_08.pde │ │ │ └── data │ │ │ │ └── SourceCodePro-Regular.ttf │ │ ├── Ex_07_09 │ │ │ ├── Ex_07_09.pde │ │ │ └── data │ │ │ │ └── network.svg │ │ ├── Ex_07_10 │ │ │ ├── Ex_07_10.pde │ │ │ └── data │ │ │ │ └── network.svg │ │ └── Ex_07_11 │ │ │ └── Ex_07_11.pde │ │ ├── 08_Motion │ │ ├── Ex_08_01 │ │ │ └── Ex_08_01.pde │ │ ├── Ex_08_02 │ │ │ └── Ex_08_02.pde │ │ ├── Ex_08_03 │ │ │ └── Ex_08_03.pde │ │ ├── Ex_08_04 │ │ │ └── Ex_08_04.pde │ │ ├── Ex_08_05 │ │ │ └── Ex_08_05.pde │ │ ├── Ex_08_06 │ │ │ └── Ex_08_06.pde │ │ ├── Ex_08_07 │ │ │ └── Ex_08_07.pde │ │ ├── Ex_08_08 │ │ │ └── Ex_08_08.pde │ │ ├── Ex_08_09 │ │ │ └── Ex_08_09.pde │ │ ├── Ex_08_10 │ │ │ └── Ex_08_10.pde │ │ ├── Ex_08_11 │ │ │ └── Ex_08_11.pde │ │ ├── Ex_08_12 │ │ │ └── Ex_08_12.pde │ │ ├── Ex_08_13 │ │ │ └── Ex_08_13.pde │ │ ├── Ex_08_14 │ │ │ └── Ex_08_14.pde │ │ └── Ex_08_15 │ │ │ └── Ex_08_15.pde │ │ ├── 09_Functions │ │ ├── Ex_09_01 │ │ │ └── Ex_09_01.pde │ │ ├── Ex_09_02 │ │ │ └── Ex_09_02.pde │ │ ├── Ex_09_03 │ │ │ └── Ex_09_03.pde │ │ ├── Ex_09_04 │ │ │ └── Ex_09_04.pde │ │ ├── Ex_09_05 │ │ │ └── Ex_09_05.pde │ │ ├── Ex_09_06 │ │ │ └── Ex_09_06.pde │ │ ├── Ex_09_07 │ │ │ └── Ex_09_07.pde │ │ └── Ex_09_08 │ │ │ └── Ex_09_08.pde │ │ ├── 10_Objects │ │ ├── Ex_10_01 │ │ │ └── Ex_10_01.pde │ │ └── Ex_10_02 │ │ │ ├── Ex_10_02.pde │ │ │ └── JitterBug.pde │ │ ├── 11_Arrays │ │ ├── Ex_11_01 │ │ │ └── Ex_11_01.pde │ │ ├── Ex_11_02 │ │ │ └── Ex_11_02.pde │ │ ├── Ex_11_03 │ │ │ └── Ex_11_03.pde │ │ ├── Ex_11_04 │ │ │ └── Ex_11_04.pde │ │ ├── Ex_11_05 │ │ │ └── Ex_11_05.pde │ │ ├── Ex_11_06 │ │ │ └── Ex_11_06.pde │ │ ├── Ex_11_07 │ │ │ └── Ex_11_07.pde │ │ ├── Ex_11_08 │ │ │ └── Ex_11_08.pde │ │ ├── Ex_11_09 │ │ │ └── Ex_11_09.pde │ │ ├── Ex_11_10 │ │ │ ├── Ex_11_10.pde │ │ │ └── JitterBug.pde │ │ ├── Ex_11_11 │ │ │ ├── Ex_11_11.pde │ │ │ ├── JitterBug.pde │ │ │ └── data │ │ │ │ ├── frame-0000.png │ │ │ │ ├── frame-0001.png │ │ │ │ ├── frame-0002.png │ │ │ │ ├── frame-0003.png │ │ │ │ ├── frame-0004.png │ │ │ │ ├── frame-0005.png │ │ │ │ ├── frame-0006.png │ │ │ │ ├── frame-0007.png │ │ │ │ ├── frame-0008.png │ │ │ │ ├── frame-0009.png │ │ │ │ ├── frame-0010.png │ │ │ │ └── frame-0011.png │ │ └── Ex_11_12 │ │ │ ├── Ex_11_12.pde │ │ │ └── data │ │ │ ├── frame-0000.png │ │ │ ├── frame-0001.png │ │ │ ├── frame-0002.png │ │ │ ├── frame-0003.png │ │ │ ├── frame-0004.png │ │ │ ├── frame-0005.png │ │ │ ├── frame-0006.png │ │ │ ├── frame-0007.png │ │ │ ├── frame-0008.png │ │ │ ├── frame-0009.png │ │ │ ├── frame-0010.png │ │ │ └── frame-0011.png │ │ ├── 12_Data │ │ ├── Ex_12_01 │ │ │ ├── Ex_12_01.pde │ │ │ └── data │ │ │ │ └── ortiz.csv │ │ ├── Ex_12_02 │ │ │ ├── Ex_12_02.pde │ │ │ └── data │ │ │ │ └── ortiz.csv │ │ ├── Ex_12_03 │ │ │ ├── Ex_12_03.pde │ │ │ └── data │ │ │ │ └── cities.csv │ │ ├── Ex_12_04 │ │ │ ├── Ex_12_04.pde │ │ │ └── data │ │ │ │ └── film.json │ │ ├── Ex_12_05 │ │ │ ├── Ex_12_05.pde │ │ │ └── data │ │ │ │ └── films.json │ │ ├── Ex_12_06 │ │ │ ├── Ex_12_06.pde │ │ │ └── data │ │ │ │ └── cincinnati.json │ │ └── Ex_12_07 │ │ │ ├── Ex_12_07.pde │ │ │ └── data │ │ │ └── cincinnati.json │ │ ├── 13_Extend │ │ ├── Ex_13_01 │ │ │ ├── Ex_13_01.pde │ │ │ └── data │ │ │ │ └── blip.wav │ │ ├── Ex_13_02 │ │ │ └── Ex_13_02.pde │ │ ├── Ex_13_03 │ │ │ └── Ex_13_03.pde │ │ ├── Ex_13_04 │ │ │ ├── Ex_13_04.pde │ │ │ └── data │ │ │ │ └── robot1.svg │ │ ├── Ex_13_05 │ │ │ ├── Ex_13_05.pde │ │ │ └── data │ │ │ │ └── robot1.svg │ │ ├── Ex_13_06 │ │ │ └── Ex_13_06.ino │ │ ├── Ex_13_07 │ │ │ └── Ex_13_07.pde │ │ ├── Ex_13_08 │ │ │ └── Ex_13_08.pde │ │ └── Ex_13_09 │ │ │ └── Ex_13_09.pde │ │ └── Robots │ │ ├── Robot01_Draw │ │ └── Robot01_Draw.pde │ │ ├── Robot02_Variables │ │ └── Robot02_Variables.pde │ │ ├── Robot03_Response │ │ └── Robot03_Response.pde │ │ ├── Robot04_Transform │ │ └── Robot04_Transform.pde │ │ ├── Robot05_Media │ │ ├── Robot05_Media.pde │ │ └── data │ │ │ ├── alpine.png │ │ │ ├── robot1.svg │ │ │ ├── robot2.svg │ │ │ └── robot3.svg │ │ ├── Robot06_Motion │ │ └── Robot06_Motion.pde │ │ ├── Robot07_Functions │ │ └── Robot07_Functions.pde │ │ ├── Robot08_Objects │ │ ├── Robot08_Objects.pde │ │ └── data │ │ │ ├── robot1.svg │ │ │ └── robot2.svg │ │ ├── Robot09_Arrays │ │ ├── Robot09_Arrays.pde │ │ └── data │ │ │ └── robot2.svg │ │ ├── Robot10_Data_01 │ │ ├── Robot10_Data_01.pde │ │ └── botArmy.tsv │ │ ├── Robot10_Data_02 │ │ ├── Robot10_Data_02.pde │ │ └── data │ │ │ ├── botArmy.tsv │ │ │ ├── robot1.svg │ │ │ ├── robot2.svg │ │ │ └── robot3.svg │ │ └── Robot10_Data_03 │ │ ├── Robot10_Data_03.pde │ │ └── data │ │ ├── botArmy.tsv │ │ ├── robot1.svg │ │ ├── robot2.svg │ │ └── robot3.svg ├── handbook_2e │ ├── examples.properties │ └── examples │ │ ├── 02 Using Processing │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ └── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── 03 Draw │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── Ex_16 │ │ │ └── Ex_16.pde │ │ ├── Ex_17 │ │ │ └── Ex_17.pde │ │ ├── Ex_18 │ │ │ └── Ex_18.pde │ │ ├── Ex_19 │ │ │ └── Ex_19.pde │ │ ├── Ex_20 │ │ │ └── Ex_20.pde │ │ ├── Ex_21 │ │ │ └── Ex_21.pde │ │ ├── Ex_22 │ │ │ └── Ex_22.pde │ │ ├── Ex_23 │ │ │ └── Ex_23.pde │ │ ├── Ex_24 │ │ │ └── Ex_24.pde │ │ ├── Ex_25 │ │ │ └── Ex_25.pde │ │ ├── Ex_26 │ │ │ └── Ex_26.pde │ │ ├── Ex_27 │ │ │ └── Ex_27.pde │ │ ├── Ex_28 │ │ │ └── Ex_28.pde │ │ ├── Ex_29 │ │ │ └── Ex_29.pde │ │ ├── Ex_30 │ │ │ └── Ex_30.pde │ │ ├── Ex_31 │ │ │ └── Ex_31.pde │ │ ├── Ex_32 │ │ │ └── Ex_32.pde │ │ ├── Ex_33 │ │ │ └── Ex_33.pde │ │ ├── Ex_34 │ │ │ └── Ex_34.pde │ │ ├── Ex_35 │ │ │ └── Ex_35.pde │ │ ├── Ex_36 │ │ │ └── Ex_36.pde │ │ ├── Ex_37 │ │ │ └── Ex_37.pde │ │ ├── Ex_38 │ │ │ └── Ex_38.pde │ │ ├── Ex_39 │ │ │ └── Ex_39.pde │ │ ├── Ex_40 │ │ │ └── Ex_40.pde │ │ ├── Ex_41 │ │ │ └── Ex_41.pde │ │ ├── Ex_42 │ │ │ └── Ex_42.pde │ │ ├── Ex_43 │ │ │ └── Ex_43.pde │ │ └── Ex_44 │ │ │ └── Ex_44.pde │ │ ├── 04 Color │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── Ex_16 │ │ │ └── Ex_16.pde │ │ ├── Ex_17 │ │ │ └── Ex_17.pde │ │ ├── Ex_18 │ │ │ └── Ex_18.pde │ │ ├── Ex_19 │ │ │ └── Ex_19.pde │ │ └── Ex_20 │ │ │ └── Ex_20.pde │ │ ├── 05 Variables │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── Ex_16 │ │ │ └── Ex_16.pde │ │ ├── Ex_17 │ │ │ └── Ex_17.pde │ │ ├── Ex_18 │ │ │ └── Ex_18.pde │ │ ├── Ex_19 │ │ │ └── Ex_19.pde │ │ ├── Ex_20 │ │ │ └── Ex_20.pde │ │ ├── Ex_21 │ │ │ └── Ex_21.pde │ │ ├── Ex_22 │ │ │ └── Ex_22.pde │ │ ├── Ex_23 │ │ │ └── Ex_23.pde │ │ ├── Ex_24 │ │ │ └── Ex_24.pde │ │ ├── Ex_25 │ │ │ └── Ex_25.pde │ │ ├── Ex_26 │ │ │ └── Ex_26.pde │ │ ├── Ex_27 │ │ │ └── Ex_27.pde │ │ ├── Ex_28 │ │ │ └── Ex_28.pde │ │ ├── Ex_29 │ │ │ └── Ex_29.pde │ │ ├── Ex_30 │ │ │ └── Ex_30.pde │ │ ├── Ex_31 │ │ │ └── Ex_31.pde │ │ ├── Ex_32 │ │ │ └── Ex_32.pde │ │ ├── Ex_33 │ │ │ └── Ex_33.pde │ │ ├── Ex_34 │ │ │ └── Ex_34.pde │ │ ├── Ex_35 │ │ │ └── Ex_35.pde │ │ ├── Ex_36 │ │ │ └── Ex_36.pde │ │ ├── Ex_37 │ │ │ └── Ex_37.pde │ │ ├── Ex_38 │ │ │ └── Ex_38.pde │ │ ├── Ex_39 │ │ │ └── Ex_39.pde │ │ └── Ex_40 │ │ │ └── Ex_40.pde │ │ ├── 06 Flow │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── Ex_16 │ │ │ └── Ex_16.pde │ │ ├── Ex_17 │ │ │ └── Ex_17.pde │ │ ├── Ex_18 │ │ │ └── Ex_18.pde │ │ ├── Ex_19 │ │ │ └── Ex_19.pde │ │ ├── Ex_20 │ │ │ └── Ex_20.pde │ │ ├── Ex_21 │ │ │ └── Ex_21.pde │ │ ├── Ex_22 │ │ │ └── Ex_22.pde │ │ ├── Ex_23 │ │ │ └── Ex_23.pde │ │ ├── Ex_24 │ │ │ └── Ex_24.pde │ │ └── Ex_25 │ │ │ └── Ex_25.pde │ │ ├── 07 Interactivitiy │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ ├── Ex_02.pde │ │ │ └── sketch.properties │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── Ex_16 │ │ │ └── Ex_16.pde │ │ ├── Ex_17 │ │ │ └── Ex_17.pde │ │ ├── Ex_18 │ │ │ └── Ex_18.pde │ │ ├── Ex_19 │ │ │ └── Ex_19.pde │ │ ├── Ex_20 │ │ │ └── Ex_20.pde │ │ ├── Ex_21 │ │ │ └── Ex_21.pde │ │ ├── Ex_22 │ │ │ └── Ex_22.pde │ │ ├── Ex_23 │ │ │ ├── Ex_23.pde │ │ │ └── sketch.properties │ │ ├── Ex_24 │ │ │ └── Ex_24.pde │ │ ├── Ex_25 │ │ │ └── Ex_25.pde │ │ ├── Ex_26 │ │ │ └── Ex_26.pde │ │ ├── Ex_27 │ │ │ └── Ex_27.pde │ │ ├── Ex_28 │ │ │ └── Ex_28.pde │ │ ├── Ex_29 │ │ │ └── Ex_29.pde │ │ ├── Ex_30 │ │ │ └── Ex_30.pde │ │ ├── Ex_31 │ │ │ └── Ex_31.pde │ │ └── Ex_32 │ │ │ └── Ex_32.pde │ │ ├── 08 Repeat │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── Ex_16 │ │ │ └── Ex_16.pde │ │ ├── Ex_17 │ │ │ └── Ex_17.pde │ │ ├── Ex_18 │ │ │ └── Ex_18.pde │ │ ├── Ex_19 │ │ │ └── Ex_19.pde │ │ ├── Ex_20 │ │ │ └── Ex_20.pde │ │ └── Ex_21 │ │ │ ├── Ex_21.pde │ │ │ └── code │ │ │ └── sketch.properties │ │ ├── 09 Synthesis 1 │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ └── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── 11 Text │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ └── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── 12 Typography │ │ ├── Ex_01 │ │ │ ├── Ex_01.pde │ │ │ └── sketch.properties │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ ├── Ex_09.pde │ │ │ └── data │ │ │ │ └── SourceCodePro-Light.otf │ │ ├── Ex_10 │ │ │ ├── Ex_10.pde │ │ │ └── data │ │ │ │ └── SourceCodePro-Light.otf │ │ ├── Ex_11 │ │ │ ├── Ex_11.pde │ │ │ └── data │ │ │ │ └── Ziggurat-Black-32.vlw │ │ ├── Ex_12 │ │ │ ├── Ex_12.pde │ │ │ └── data │ │ │ │ └── Ziggurat-Black-12.vlw │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── Ex_16 │ │ │ └── Ex_16.pde │ │ ├── Ex_17 │ │ │ └── Ex_17.pde │ │ ├── Ex_18 │ │ │ └── Ex_18.pde │ │ └── Ex_19 │ │ │ └── Ex_19.pde │ │ ├── 13 Images │ │ ├── Ex_01 │ │ │ ├── Ex_01.pde │ │ │ └── data │ │ │ │ └── dwp-01.jpg │ │ ├── Ex_02 │ │ │ ├── Ex_02.pde │ │ │ └── data │ │ │ │ └── dwp-01.jpg │ │ ├── Ex_03 │ │ │ ├── Ex_03.pde │ │ │ └── data │ │ │ │ └── dwp-01.jpg │ │ ├── Ex_04 │ │ │ ├── Ex_04.pde │ │ │ └── data │ │ │ │ └── dwp-01.jpg │ │ ├── Ex_05 │ │ │ ├── Ex_05.pde │ │ │ └── data │ │ │ │ └── dwp-02.jpg │ │ ├── Ex_06 │ │ │ ├── Ex_06.pde │ │ │ └── data │ │ │ │ └── dwp-02.jpg │ │ ├── Ex_07 │ │ │ ├── Ex_07.pde │ │ │ └── data │ │ │ │ └── dwp-02.jpg │ │ ├── Ex_08 │ │ │ ├── Ex_08.pde │ │ │ └── data │ │ │ │ └── dwp-03.jpg │ │ ├── Ex_09 │ │ │ ├── Ex_09.pde │ │ │ └── data │ │ │ │ └── dwp-03.jpg │ │ ├── Ex_10 │ │ │ ├── Ex_10.pde │ │ │ └── data │ │ │ │ └── dwp.gif │ │ ├── Ex_11 │ │ │ ├── Ex_11.pde │ │ │ └── data │ │ │ │ └── dwp.png │ │ ├── Ex_12 │ │ │ ├── Ex_12.pde │ │ │ └── data │ │ │ │ ├── airport.jpg │ │ │ │ └── airportmask.jpg │ │ ├── Ex_13 │ │ │ ├── Ex_13.pde │ │ │ └── data │ │ │ │ └── topanga.jpg │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ └── Ex_16 │ │ │ ├── Ex_16.pde │ │ │ └── data │ │ │ └── dwp-01.jpg │ │ ├── 14 Transform │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── Ex_16 │ │ │ └── Ex_16.pde │ │ ├── Ex_17 │ │ │ └── Ex_17.pde │ │ ├── Ex_18 │ │ │ └── Ex_18.pde │ │ ├── Ex_19 │ │ │ └── Ex_19.pde │ │ ├── Ex_20 │ │ │ └── Ex_20.pde │ │ ├── Ex_21 │ │ │ └── Ex_21.pde │ │ ├── Ex_22 │ │ │ └── Ex_22.pde │ │ ├── Ex_23 │ │ │ └── Ex_23.pde │ │ ├── Ex_24 │ │ │ └── Ex_24.pde │ │ ├── Ex_25 │ │ │ └── Ex_25.pde │ │ └── Ex_26 │ │ │ └── Ex_26.pde │ │ ├── 15 Vertices │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── Ex_16 │ │ │ └── Ex_16.pde │ │ ├── Ex_17 │ │ │ └── Ex_17.pde │ │ ├── Ex_18 │ │ │ └── Ex_18.pde │ │ ├── Ex_19 │ │ │ └── Ex_19.pde │ │ ├── Ex_20 │ │ │ └── Ex_20.pde │ │ └── Ex_21 │ │ │ └── Ex_21.pde │ │ ├── 16 3D Drawing │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ ├── Ex_14.pde │ │ │ └── data │ │ │ │ ├── DSC_0387.jpg │ │ │ │ └── dwp-parallel.png │ │ ├── Ex_15 │ │ │ ├── Ex_15.pde │ │ │ └── data │ │ │ │ ├── DSC_0387.jpg │ │ │ │ └── dwp-parallel.png │ │ └── Ex_16 │ │ │ ├── Ex_16.pde │ │ │ └── data │ │ │ ├── DSC_0387.jpg │ │ │ └── dwp-parallel.png │ │ ├── 17 Shapes │ │ ├── Ex_01 │ │ │ ├── Ex_01.pde │ │ │ └── data │ │ │ │ └── antarctica.svg │ │ ├── Ex_02 │ │ │ ├── Ex_02.pde │ │ │ └── data │ │ │ │ └── antarctica.svg │ │ ├── Ex_03 │ │ │ ├── Ex_03.pde │ │ │ └── data │ │ │ │ └── antarctica.svg │ │ ├── Ex_04 │ │ │ ├── Ex_04.pde │ │ │ └── data │ │ │ │ └── antarctica.svg │ │ ├── Ex_05 │ │ │ ├── Ex_05.pde │ │ │ └── data │ │ │ │ └── antarctica.svg │ │ ├── Ex_06 │ │ │ ├── Ex_06.pde │ │ │ └── data │ │ │ │ ├── teapot-upsidedown.obj │ │ │ │ └── teapot.obj │ │ ├── Ex_07 │ │ │ ├── Ex_07.pde │ │ │ └── data │ │ │ │ └── teapot.obj │ │ ├── Ex_08 │ │ │ ├── Ex_08.pde │ │ │ └── data │ │ │ │ ├── teapot-upsidedown.obj │ │ │ │ └── teapot.obj │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ └── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── 18 Synthesis 2 │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ └── Ex_05 │ │ │ ├── Ex_05.pde │ │ │ └── data │ │ │ ├── background.png │ │ │ ├── dagger.png │ │ │ ├── figure.png │ │ │ └── key.png │ │ ├── 20 Calculate │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── Ex_16 │ │ │ └── Ex_16.pde │ │ ├── Ex_17 │ │ │ └── Ex_17.pde │ │ ├── Ex_18 │ │ │ └── Ex_18.pde │ │ ├── Ex_19 │ │ │ └── Ex_19.pde │ │ ├── Ex_20 │ │ │ └── Ex_20.pde │ │ ├── Ex_21 │ │ │ └── Ex_21.pde │ │ ├── Ex_22 │ │ │ └── Ex_22.pde │ │ ├── Ex_23 │ │ │ └── Ex_23.pde │ │ ├── Ex_24 │ │ │ └── Ex_24.pde │ │ ├── Ex_25 │ │ │ └── Ex_25.pde │ │ ├── Ex_26 │ │ │ └── Ex_26.pde │ │ ├── Ex_27 │ │ │ └── Ex_27.pde │ │ ├── Ex_28 │ │ │ └── Ex_28.pde │ │ ├── Ex_29 │ │ │ └── Ex_29.pde │ │ ├── Ex_30 │ │ │ └── Ex_30.pde │ │ ├── Ex_31 │ │ │ └── Ex_31.pde │ │ ├── Ex_32 │ │ │ └── Ex_32.pde │ │ ├── Ex_33 │ │ │ └── Ex_33.pde │ │ ├── Ex_34 │ │ │ └── Ex_34.pde │ │ ├── Ex_35 │ │ │ └── Ex_35.pde │ │ ├── Ex_36 │ │ │ └── Ex_36.pde │ │ ├── Ex_37 │ │ │ └── Ex_37.pde │ │ ├── Ex_38 │ │ │ └── Ex_38.pde │ │ ├── Ex_39 │ │ │ └── Ex_39.pde │ │ ├── Ex_40 │ │ │ └── Ex_40.pde │ │ ├── Ex_41 │ │ │ └── Ex_41.pde │ │ ├── Ex_42 │ │ │ └── Ex_42.pde │ │ ├── Ex_43 │ │ │ └── Ex_43.pde │ │ └── Ex_44 │ │ │ └── Ex_44.pde │ │ ├── 21 Random │ │ ├── Ex_01 │ │ │ ├── Ex_01.pde │ │ │ └── sketch.properties │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── Ex_16 │ │ │ ├── 21_16_1.tif │ │ │ └── Ex_16.pde │ │ └── Ex_17 │ │ │ └── Ex_17.pde │ │ ├── 22 Motion │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── Ex_16 │ │ │ └── Ex_16.pde │ │ ├── Ex_17 │ │ │ └── Ex_17.pde │ │ ├── Ex_18 │ │ │ ├── Ex_18.pde │ │ │ └── data │ │ │ │ └── SourceCodePro-Light.otf │ │ ├── Ex_19 │ │ │ ├── Ex_19.pde │ │ │ └── data │ │ │ │ └── SourceCodePro-Light.otf │ │ ├── Ex_20 │ │ │ ├── Ex_20.pde │ │ │ └── data │ │ │ │ └── SourceCodePro-Light.otf │ │ ├── Ex_21 │ │ │ ├── Ex_21.pde │ │ │ └── data │ │ │ │ └── SourceCodePro-Light.otf │ │ ├── Ex_22 │ │ │ ├── Ex_22.pde │ │ │ └── data │ │ │ │ └── SourceCodePro-Light.otf │ │ └── Ex_23 │ │ │ ├── Ex_23.pde │ │ │ └── data │ │ │ └── SourceCodePro-Light.otf │ │ ├── 23 Time │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ └── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── 24 Functions │ │ ├── EX_05 │ │ │ └── EX_05.pde │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── Ex_16 │ │ │ └── Ex_16.pde │ │ ├── Ex_17 │ │ │ └── Ex_17.pde │ │ ├── Ex_18 │ │ │ └── Ex_18.pde │ │ ├── Ex_19 │ │ │ └── Ex_19.pde │ │ ├── Ex_20 │ │ │ └── Ex_20.pde │ │ ├── Ex_21 │ │ │ ├── Ex_21.pde │ │ │ └── data │ │ │ │ ├── 1b.jpg │ │ │ │ ├── 1f.jpg │ │ │ │ ├── 2b.jpg │ │ │ │ ├── 2f.jpg │ │ │ │ ├── 3b.jpg │ │ │ │ ├── 3f.jpg │ │ │ │ ├── 4b.jpg │ │ │ │ ├── 4f.jpg │ │ │ │ ├── 5b.jpg │ │ │ │ ├── 5f.jpg │ │ │ │ ├── 6b.jpg │ │ │ │ ├── 6f.jpg │ │ │ │ ├── 7b.jpg │ │ │ │ ├── 7f.jpg │ │ │ │ ├── 8b.jpg │ │ │ │ ├── 8f.jpg │ │ │ │ ├── 9b.jpg │ │ │ │ └── 9f.jpg │ │ ├── Ex_22 │ │ │ └── Ex_22.pde │ │ ├── Ex_23 │ │ │ └── Ex_23.pde │ │ ├── Ex_24 │ │ │ └── Ex_24.pde │ │ ├── Ex_25 │ │ │ └── Ex_25.pde │ │ ├── Ex_26 │ │ │ └── Ex_26.pde │ │ ├── Ex_27 │ │ │ └── Ex_27.pde │ │ ├── Ex_28 │ │ │ └── Ex_28.pde │ │ ├── Ex_29 │ │ │ └── Ex_29.pde │ │ ├── Ex_30 │ │ │ └── Ex_30.pde │ │ ├── Ex_31 │ │ │ └── Ex_31.pde │ │ └── Ex_32 │ │ │ └── Ex_32.pde │ │ ├── 25 Objects │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ ├── Egg.pde │ │ │ ├── EggRing.pde │ │ │ ├── Ex_13.pde │ │ │ └── Ring.pde │ │ ├── Ex_14 │ │ │ ├── Egg.pde │ │ │ ├── EggRing.pde │ │ │ ├── Ex_14.pde │ │ │ └── Ring.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── Ex_16 │ │ │ ├── Ex_16.pde │ │ │ └── Spin.pde │ │ ├── Ex_17 │ │ │ ├── Ex_17.pde │ │ │ └── Spin.pde │ │ └── Ex_18 │ │ │ ├── Ex_18.pde │ │ │ ├── Spin.pde │ │ │ ├── SpinArm.pde │ │ │ └── SpinSpots.pde │ │ ├── 26 Synthesis 3 │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ └── Ex_05 │ │ │ ├── Ball.pde │ │ │ ├── Ex_05.pde │ │ │ └── Paddle.pde │ │ ├── 28 Arrays │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── Ex_16 │ │ │ └── Ex_16.pde │ │ ├── Ex_17 │ │ │ └── Ex_17.pde │ │ ├── Ex_18 │ │ │ └── Ex_18.pde │ │ ├── Ex_19 │ │ │ └── Ex_19.pde │ │ ├── Ex_20 │ │ │ └── Ex_20.pde │ │ ├── Ex_21 │ │ │ └── Ex_21.pde │ │ ├── Ex_22 │ │ │ └── Ex_22.pde │ │ ├── Ex_23 │ │ │ └── Ex_23.pde │ │ ├── Ex_24 │ │ │ ├── Ex_24.pde │ │ │ └── Ring.pde │ │ ├── Ex_25 │ │ │ ├── Ex_25.pde │ │ │ └── Spot.pde │ │ ├── Ex_26 │ │ │ └── Ex_26.pde │ │ └── Ex_27 │ │ │ └── Ex_27.pde │ │ ├── 29 Animation │ │ ├── Ex_01 │ │ │ ├── Ex_01.pde │ │ │ └── data │ │ │ │ ├── ani-000.gif │ │ │ │ ├── ani-001.gif │ │ │ │ ├── ani-002.gif │ │ │ │ ├── ani-003.gif │ │ │ │ ├── ani-004.gif │ │ │ │ ├── ani-005.gif │ │ │ │ ├── ani-006.gif │ │ │ │ ├── ani-007.gif │ │ │ │ ├── ani-008.gif │ │ │ │ ├── ani-009.gif │ │ │ │ ├── ani-010.gif │ │ │ │ └── ani-011.gif │ │ ├── Ex_02 │ │ │ ├── Ex_02.pde │ │ │ └── data │ │ │ │ ├── ani-000.gif │ │ │ │ ├── ani-001.gif │ │ │ │ ├── ani-002.gif │ │ │ │ ├── ani-003.gif │ │ │ │ ├── ani-004.gif │ │ │ │ ├── ani-005.gif │ │ │ │ ├── ani-006.gif │ │ │ │ ├── ani-007.gif │ │ │ │ ├── ani-008.gif │ │ │ │ ├── ani-009.gif │ │ │ │ ├── ani-010.gif │ │ │ │ └── ani-011.gif │ │ ├── Ex_03 │ │ │ ├── Ex_03.pde │ │ │ └── data │ │ │ │ ├── ani-000.gif │ │ │ │ ├── ani-001.gif │ │ │ │ ├── ani-002.gif │ │ │ │ ├── ani-003.gif │ │ │ │ ├── ani-004.gif │ │ │ │ ├── ani-005.gif │ │ │ │ ├── ani-006.gif │ │ │ │ ├── ani-007.gif │ │ │ │ ├── ani-008.gif │ │ │ │ ├── ani-009.gif │ │ │ │ ├── ani-010.gif │ │ │ │ └── ani-011.gif │ │ ├── Ex_04 │ │ │ ├── Ex_04.pde │ │ │ └── data │ │ │ │ ├── ani-000.gif │ │ │ │ ├── ani-001.gif │ │ │ │ ├── ani-002.gif │ │ │ │ ├── ani-003.gif │ │ │ │ ├── ani-004.gif │ │ │ │ ├── ani-005.gif │ │ │ │ ├── ani-006.gif │ │ │ │ ├── ani-007.gif │ │ │ │ ├── ani-008.gif │ │ │ │ ├── ani-009.gif │ │ │ │ ├── ani-010.gif │ │ │ │ └── ani-011.gif │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ ├── Ex_06.pde │ │ │ └── line.tif │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ └── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── 30 Dynamic Drawing │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ ├── Ex_08.pde │ │ │ └── data │ │ │ │ └── imageline.jpg │ │ ├── Ex_09 │ │ │ ├── Ex_09.pde │ │ │ └── data │ │ │ │ └── dwp.png │ │ ├── Ex_10 │ │ │ ├── Ex_10.pde │ │ │ └── data │ │ │ │ ├── antarctica.svg │ │ │ │ └── dwp.png │ │ ├── Ex_11 │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── Ex_16 │ │ │ └── Ex_16.pde │ │ ├── Ex_17 │ │ │ └── Ex_17.pde │ │ └── Ex_18 │ │ │ └── Ex_18.pde │ │ ├── 31 Simulate │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ ├── Ex_06.pde │ │ │ └── Particle.pde │ │ ├── Ex_07 │ │ │ ├── Ex_07.pde │ │ │ └── Particle.pde │ │ ├── Ex_08 │ │ │ ├── Ex_08.pde │ │ │ ├── GenParticle.pde │ │ │ └── Particle.pde │ │ ├── Ex_09 │ │ │ ├── Ex_09.pde │ │ │ └── Particle.pde │ │ ├── Ex_10 │ │ │ ├── Ex_10.pde │ │ │ ├── LimitedParticle.pde │ │ │ └── Particle.pde │ │ ├── Ex_11 │ │ │ ├── Ex_11.pde │ │ │ └── Particle.pde │ │ ├── Ex_12 │ │ │ ├── ArrowParticle.pde │ │ │ ├── Ex_12.pde │ │ │ └── Particle.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ └── Ex_14.pde │ │ ├── Ex_15 │ │ │ └── Ex_15.pde │ │ ├── Ex_16 │ │ │ ├── Ex_16.pde │ │ │ └── Spring2D.pde │ │ ├── Ex_17 │ │ │ ├── Ex_17.pde │ │ │ └── Spring2D.pde │ │ ├── Ex_18 │ │ │ ├── Ex_18.pde │ │ │ └── Spring2D.pde │ │ ├── Ex_19 │ │ │ ├── Ex_19.pde │ │ │ ├── FixedSpring.pde │ │ │ └── Spring2D.pde │ │ ├── Ex_20 │ │ │ ├── Ex_20.pde │ │ │ ├── FixedSpring.pde │ │ │ └── Spring2D.pde │ │ ├── Ex_21 │ │ │ └── Ex_21.pde │ │ ├── Ex_22 │ │ │ └── Ex_22.pde │ │ ├── Ex_23 │ │ │ └── Ex_23.pde │ │ ├── Ex_24 │ │ │ └── Ex_24.pde │ │ └── Ex_25 │ │ │ └── Ex_25.pde │ │ ├── 32 Data │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ ├── Ex_05.pde │ │ │ └── lines.txt │ │ ├── Ex_06 │ │ │ ├── Ex_06.pde │ │ │ └── positions.txt │ │ ├── Ex_07 │ │ │ ├── Ex_07.pde │ │ │ └── data │ │ │ │ └── OpenSans-ExtraBoldItalic.ttf │ │ ├── Ex_08 │ │ │ ├── Ex_08.pde │ │ │ └── data │ │ │ │ └── positions.txt │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ ├── Ex_10.pde │ │ │ └── data │ │ │ │ └── positions.txt │ │ ├── Ex_11 │ │ │ ├── Ex_11.pde │ │ │ └── data │ │ │ │ └── cars.tsv │ │ ├── Ex_12 │ │ │ ├── Ex_12.pde │ │ │ └── data │ │ │ │ └── mammals.xml │ │ ├── Ex_13 │ │ │ ├── Ex_13.pde │ │ │ └── data │ │ │ │ └── mammals.xml │ │ ├── Ex_14 │ │ │ ├── Ex_14.pde │ │ │ └── data │ │ │ │ ├── cambridge.xml │ │ │ │ └── marinadelrey.xml │ │ ├── Ex_15 │ │ │ ├── Ex_15.pde │ │ │ └── data │ │ │ │ ├── cambridge.xml │ │ │ │ └── marinadelrey.xml │ │ ├── Ex_16 │ │ │ ├── Ex_16.pde │ │ │ └── data │ │ │ │ └── animals.json │ │ ├── Ex_17 │ │ │ ├── Ex_17.pde │ │ │ └── data │ │ │ │ └── animals.json │ │ ├── Ex_18 │ │ │ ├── Ex_18.pde │ │ │ └── data │ │ │ │ └── books.json │ │ └── Ex_19 │ │ │ ├── Book.pde │ │ │ ├── Ex_19.pde │ │ │ └── data │ │ │ └── books.json │ │ ├── 33 Interface │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ ├── Ex_03.pde │ │ │ ├── OverCircle.pde │ │ │ └── OverRect.pde │ │ ├── Ex_04 │ │ │ ├── Ex_04.pde │ │ │ ├── OverCircle.pde │ │ │ └── OverRect.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ ├── Button.pde │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ ├── Button.pde │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ ├── Button.pde │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ ├── Button.pde │ │ │ ├── DragButton.pde │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ ├── Check.pde │ │ │ └── Ex_11.pde │ │ ├── Ex_12 │ │ │ ├── Check.pde │ │ │ └── Ex_12.pde │ │ ├── Ex_13 │ │ │ └── Ex_13.pde │ │ ├── Ex_14 │ │ │ ├── Ex_14.pde │ │ │ └── Radio.pde │ │ ├── Ex_15 │ │ │ ├── Ex_15.pde │ │ │ └── Radio.pde │ │ ├── Ex_16 │ │ │ └── Ex_16.pde │ │ ├── Ex_17 │ │ │ ├── Ex_17.pde │ │ │ └── Scrollbar.pde │ │ └── Ex_18 │ │ │ ├── Ex_18.pde │ │ │ ├── Scrollbar.pde │ │ │ └── data │ │ │ └── landscape.jpg │ │ ├── 34 Image Processing │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ ├── Ex_04.pde │ │ │ └── data │ │ │ │ └── topanga.jpg │ │ ├── Ex_05 │ │ │ ├── Ex_05.pde │ │ │ └── data │ │ │ │ └── topanga.jpg │ │ ├── Ex_06 │ │ │ ├── Ex_06.pde │ │ │ └── data │ │ │ │ └── topangaCrop.jpg │ │ ├── Ex_07 │ │ │ ├── Ex_07.pde │ │ │ └── data │ │ │ │ └── topangaCrop.jpg │ │ ├── Ex_08 │ │ │ ├── Ex_08.pde │ │ │ └── data │ │ │ │ └── topanga.jpg │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ ├── Ex_11 │ │ │ ├── Ex_11.pde │ │ │ └── data │ │ │ │ └── topangaCrop.jpg │ │ ├── Ex_12 │ │ │ ├── Ex_12.pde │ │ │ └── data │ │ │ │ └── topangaCrop.jpg │ │ ├── Ex_13 │ │ │ ├── Ex_13.pde │ │ │ └── data │ │ │ │ └── topanga.jpg │ │ ├── Ex_14 │ │ │ ├── Ex_14.pde │ │ │ └── data │ │ │ │ ├── airport.jpg │ │ │ │ └── topanga.jpg │ │ ├── Ex_15 │ │ │ ├── Ex_15.pde │ │ │ └── data │ │ │ │ └── airport.jpg │ │ ├── Ex_16 │ │ │ └── Ex_16.pde │ │ ├── Ex_17 │ │ │ └── Ex_17.pde │ │ ├── Ex_18 │ │ │ └── Ex_18.pde │ │ ├── Ex_19 │ │ │ └── Ex_19.pde │ │ ├── Ex_20 │ │ │ └── Ex_20.pde │ │ ├── Ex_21 │ │ │ └── Ex_21.pde │ │ ├── Ex_22 │ │ │ └── Ex_22.pde │ │ ├── Ex_23 │ │ │ ├── Ex_23.pde │ │ │ └── data │ │ │ │ └── sample.png │ │ ├── Ex_24 │ │ │ ├── Ex_24.pde │ │ │ └── data │ │ │ │ └── figure.jpg │ │ ├── Ex_25 │ │ │ └── Ex_25.pde │ │ ├── Ex_26 │ │ │ └── Ex_26.pde │ │ ├── Ex_27 │ │ │ └── Ex_27.pde │ │ ├── Ex_28 │ │ │ └── Ex_28.pde │ │ ├── Ex_29 │ │ │ ├── Ex_29.pde │ │ │ └── data │ │ │ │ └── arch.jpg │ │ ├── Ex_30 │ │ │ ├── Ex_30.pde │ │ │ └── data │ │ │ │ └── arch.jpg │ │ ├── Ex_31 │ │ │ ├── Ex_31.pde │ │ │ └── data │ │ │ │ └── arch.jpg │ │ ├── Ex_32 │ │ │ ├── Ex_32.pde │ │ │ └── data │ │ │ │ └── arch.jpg │ │ ├── Ex_33 │ │ │ ├── Ex_33.pde │ │ │ └── data │ │ │ │ └── arch.jpg │ │ ├── Ex_34 │ │ │ ├── Ex_34.pde │ │ │ └── data │ │ │ │ └── arch.jpg │ │ ├── Ex_35 │ │ │ ├── Ex_35.pde │ │ │ └── data │ │ │ │ └── arch.jpg │ │ └── Ex_36 │ │ │ ├── Ex_36.pde │ │ │ └── data │ │ │ └── arch.jpg │ │ ├── 35 Render Techniques │ │ ├── Ex_01 │ │ │ └── Ex_01.pde │ │ ├── Ex_02 │ │ │ └── Ex_02.pde │ │ ├── Ex_03 │ │ │ └── Ex_03.pde │ │ ├── Ex_04 │ │ │ └── Ex_04.pde │ │ ├── Ex_05 │ │ │ └── Ex_05.pde │ │ ├── Ex_06 │ │ │ └── Ex_06.pde │ │ ├── Ex_07 │ │ │ └── Ex_07.pde │ │ ├── Ex_08 │ │ │ └── Ex_08.pde │ │ ├── Ex_09 │ │ │ └── Ex_09.pde │ │ ├── Ex_10 │ │ │ └── Ex_10.pde │ │ └── Ex_11 │ │ │ └── Ex_11.pde │ │ └── 36 Synthesis 4 │ │ ├── Ex_01_Collage_1 │ │ ├── Ex_01_Collage_1.pde │ │ └── data │ │ │ └── nyt_13.jpg │ │ ├── Ex_02_Collage_2 │ │ ├── Element.pde │ │ ├── Ex_02_Collage_2.pde │ │ └── data │ │ │ ├── nyt_01.jpg │ │ │ ├── nyt_02.jpg │ │ │ ├── nyt_03.jpg │ │ │ ├── nyt_04.jpg │ │ │ ├── nyt_05.jpg │ │ │ ├── nyt_06.jpg │ │ │ ├── nyt_07.jpg │ │ │ ├── nyt_08.jpg │ │ │ ├── nyt_09.jpg │ │ │ ├── nyt_10.jpg │ │ │ ├── nyt_11.jpg │ │ │ ├── nyt_12.jpg │ │ │ ├── nyt_13.jpg │ │ │ ├── nyt_14.jpg │ │ │ ├── nyt_15.jpg │ │ │ ├── nyt_16.jpg │ │ │ ├── nyt_17.jpg │ │ │ ├── nyt_18.jpg │ │ │ ├── nyt_19.jpg │ │ │ ├── nyt_20.jpg │ │ │ ├── nyt_21.jpg │ │ │ ├── nyt_22.jpg │ │ │ ├── nyt_23.jpg │ │ │ ├── nyt_24.jpg │ │ │ ├── nyt_25.jpg │ │ │ ├── nyt_26.jpg │ │ │ ├── nyt_27.jpg │ │ │ ├── nyt_28.jpg │ │ │ └── nyt_29.jpg │ │ ├── Ex_03_Waves_1 │ │ └── Ex_03_Waves_1.pde │ │ ├── Ex_04_Waves_2 │ │ └── Ex_04_Waves_2.pde │ │ ├── Ex_05_Waves_3 │ │ └── Ex_05_Waves_3.pde │ │ ├── Ex_06_3D_Letter_1 │ │ ├── Ex_06_3D_Letter_1.pde │ │ └── data │ │ │ └── K.svg │ │ ├── Ex_07_3D_Letter_2 │ │ ├── Ex_07_3D_Letter_2.pde │ │ └── data │ │ │ ├── K-center.svg │ │ │ └── K.svg │ │ ├── Ex_08_3D_Letter_3 │ │ ├── Ex_08_3D_Letter_3.pde │ │ └── data │ │ │ └── K.svg │ │ ├── Ex_09_Noise_1 │ │ └── Ex_09_Noise_1.pde │ │ ├── Ex_10_Noise_2 │ │ └── Ex_10_Noise_2.pde │ │ ├── Ex_11_Noise_3 │ │ └── Ex_11_Noise_3.pde │ │ ├── Ex_12_Nodes_1 │ │ └── Ex_12_Nodes_1.pde │ │ └── Ex_13_Nodes_2 │ │ ├── Ex_13_Nodes_2.pde │ │ └── Node.pde ├── index.html ├── static │ ├── books.html │ ├── copyright.html │ ├── download.html │ ├── feeds │ │ ├── TwitterAPIExchange.php │ │ ├── cache │ │ │ └── .gitignore │ │ ├── github.php │ │ └── twitter.php │ ├── handbook.html │ ├── learning.html │ ├── media.zip │ ├── overview.html │ ├── people.html │ ├── processing-errata.txt │ ├── shop │ │ ├── imgs │ │ │ ├── beast-2010-full.jpg │ │ │ ├── beast-crop1.gif │ │ │ ├── beast-crop1.jpg │ │ │ ├── beast-crop2.gif │ │ │ ├── beast-crop2.jpg │ │ │ ├── beast-full.gif │ │ │ ├── beauty-crop1.jpg │ │ │ ├── beauty-crop2.jpg │ │ │ ├── beauty-full.gif │ │ │ ├── beauty-full.jpg │ │ │ ├── books.gif │ │ │ ├── brain-full.jpg │ │ │ ├── header-shop.gif │ │ │ ├── processing-handbook-second-edition-sm.jpg │ │ │ ├── toxi-full.jpg │ │ │ ├── tshirts.gif │ │ │ ├── tshirts2010.gif │ │ │ ├── tshirts2011.gif │ │ │ ├── tshirts2013-code-sm.jpg │ │ │ ├── tshirts2013-code.jpg │ │ │ ├── tshirts2013-crop.jpg │ │ │ ├── tshirts2013-navy-sm.jpg │ │ │ ├── tshirts2013-navy.jpg │ │ │ ├── tshirts2013-strange-sm.jpg │ │ │ ├── tshirts2013-strange.jpg │ │ │ └── tshirts2013.jpg │ │ └── index.html │ ├── support.html │ └── tutorials │ │ ├── 2darray │ │ ├── imgs │ │ │ ├── cells.jpg │ │ │ ├── grid.jpg │ │ │ └── points.jpg │ │ └── index.html │ │ ├── anatomy │ │ ├── code │ │ │ └── polystar.zip │ │ ├── imgs │ │ │ ├── accurate_pentagon.jpg │ │ │ ├── bad_pentagon.jpg │ │ │ ├── bad_stars.jpg │ │ │ ├── better_stars.png │ │ │ ├── cookie_stars.jpg │ │ │ ├── good_stars.jpg │ │ │ ├── poly2.png │ │ │ ├── poly3.png │ │ │ ├── polytest1.jpg │ │ │ ├── randomness.png │ │ │ ├── sketch1.jpg │ │ │ ├── sketch2.jpg │ │ │ ├── stretchy.jpg │ │ │ ├── surprise.png │ │ │ └── triangle_star.jpg │ │ └── index.html │ │ ├── android │ │ ├── imgs │ │ │ ├── android1.jpg │ │ │ ├── android2.png │ │ │ ├── android3.png │ │ │ ├── android4.png │ │ │ ├── android5.png │ │ │ ├── android6.jpg │ │ │ └── android7.jpg │ │ └── index.html │ │ ├── arraylist │ │ └── index.html │ │ ├── arrays │ │ ├── imgs │ │ │ ├── 28_01.png │ │ │ ├── 28_02.png │ │ │ ├── 28_09.png │ │ │ ├── 28_12.png │ │ │ ├── 28_13.png │ │ │ ├── 28_15_1.png │ │ │ ├── 28_15_2.png │ │ │ ├── 28_15_3.png │ │ │ ├── 28_16_1.png │ │ │ ├── 28_16_2.png │ │ │ ├── 28_16_3.png │ │ │ ├── 28_24_1.png │ │ │ ├── 28_24_2.png │ │ │ ├── 28_24_3.png │ │ │ ├── 28_25_1.png │ │ │ ├── 28_25_2.png │ │ │ ├── 28_25_3.png │ │ │ ├── 28_27.png │ │ │ ├── DA820192878E232E._t_ │ │ │ ├── Dia-28-1.svg │ │ │ ├── Dia-28-2.svg │ │ │ └── Dia-28-3.svg │ │ └── index.html │ │ ├── basics │ │ ├── imgs │ │ │ ├── 1.1.jpg │ │ │ ├── 1.10.jpg │ │ │ ├── 1.11.jpg │ │ │ ├── 1.2.jpg │ │ │ ├── 1.3.jpg │ │ │ ├── 1.4.jpg │ │ │ ├── 1.5.jpg │ │ │ ├── 1.6.jpg │ │ │ ├── 1.7.jpg │ │ │ ├── 1.8.jpg │ │ │ ├── 1.9.jpg │ │ │ ├── cells.jpg │ │ │ ├── class.jpg │ │ │ ├── constructor_arguments.jpg │ │ │ ├── grid.jpg │ │ │ └── points.jpg │ │ └── index.html │ │ ├── color │ │ ├── imgs │ │ │ ├── example_1_3.jpg │ │ │ ├── example_1_4.jpg │ │ │ ├── grayscale.jpg │ │ │ ├── grayscale.svg │ │ │ ├── hsb.png │ │ │ ├── hsv.png │ │ │ ├── order.jpg │ │ │ ├── order.svg │ │ │ ├── rgb.jpg │ │ │ ├── rgb.png │ │ │ └── selector.jpg │ │ └── index.html │ │ ├── curves │ │ ├── code │ │ │ ├── curve_programs.zip │ │ │ ├── try_bezier │ │ │ │ ├── core.jar │ │ │ │ ├── guicomponents.jar │ │ │ │ ├── index.html │ │ │ │ ├── loading.gif │ │ │ │ ├── try_bezier.jar │ │ │ │ ├── try_bezier.java │ │ │ │ └── try_bezier.pde │ │ │ └── try_curve │ │ │ │ ├── core.jar │ │ │ │ ├── guicomponents.jar │ │ │ │ ├── index.html │ │ │ │ ├── loading.gif │ │ │ │ ├── try_curve.jar │ │ │ │ ├── try_curve.java │ │ │ │ └── try_curve.pde │ │ ├── imgs │ │ │ ├── arc1.png │ │ │ ├── bezier_with_lines.png │ │ │ ├── bezier_with_points.png │ │ │ ├── curve1.png │ │ │ ├── curve_with_tangent.png │ │ │ ├── curvevertex1.png │ │ │ ├── curvevertex2.png │ │ │ ├── nonsmooth_bezier.png │ │ │ └── smooth_bezier.png │ │ └── index.html │ │ ├── data │ │ ├── imgs │ │ │ ├── data_01_text.jpg │ │ │ ├── data_02_numbers.png │ │ │ ├── data_03_table.jpg │ │ │ ├── data_03_table.png │ │ │ ├── data_04_excel.jpg │ │ │ ├── data_05_headers.jpg │ │ │ ├── data_06_xml.jpg │ │ │ ├── data_07_weatherxml.jpg │ │ │ ├── fig_18_01_user_input.png │ │ │ ├── fig_18_02_filetxt.png │ │ │ ├── fig_18_03_datatxt.png │ │ │ ├── fig_18_04_bargraph.png │ │ │ ├── fig_18_05_datacsv.png │ │ │ ├── fig_18_06_datacsv_grid.png │ │ │ ├── fig_18_07_tablebubbles.png │ │ │ ├── fig_18_08_rollover.png │ │ │ ├── fig_18_09_shaunsheep.png │ │ │ ├── fig_18_10_shaunsheep_sourc.png │ │ │ ├── fig_18_11_parsing_imdb.png │ │ │ ├── fig_18_12_traditional_arra.png │ │ │ ├── fig_18_13_associative_arra.png │ │ │ ├── fig_18_14_concordance_viz.png │ │ │ ├── fig_18_15_xml_tree.png │ │ │ ├── fig_18_16_rss.png │ │ │ ├── fig_18_17_weather.png │ │ │ ├── fig_18_18_xmlbubbles.png │ │ │ └── fig_18_19_thread.png │ │ ├── index-old.html │ │ └── index.html │ │ ├── drawing │ │ ├── imgs │ │ │ ├── 1.1.jpg │ │ │ ├── 1.10.jpg │ │ │ ├── 1.10a.jpg │ │ │ ├── 1.10b.jpg │ │ │ ├── 1.10c.jpg │ │ │ ├── 1.11.jpg │ │ │ ├── 1.2.jpg │ │ │ ├── 1.3.jpg │ │ │ ├── 1.4.jpg │ │ │ ├── 1.5.jpg │ │ │ ├── 1.6.jpg │ │ │ ├── 1.7.jpg │ │ │ ├── 1.8.jpg │ │ │ ├── 1.9.jpg │ │ │ ├── A94665D2BBAE05CF._t_ │ │ │ ├── A94665DD9FEE952C._t_ │ │ │ ├── A94665F3686FB3E6._t_ │ │ │ ├── cells.jpg │ │ │ ├── class.jpg │ │ │ ├── constructor_arguments.jpg │ │ │ ├── drawing-01.svg │ │ │ ├── drawing-02.svg │ │ │ ├── drawing-03.svg │ │ │ ├── drawing-04.svg │ │ │ ├── drawing-05.svg │ │ │ ├── drawing-06.svg │ │ │ ├── drawing-07.svg │ │ │ ├── drawing-08.svg │ │ │ ├── drawing-09.svg │ │ │ ├── drawing-10.svg │ │ │ ├── drawing-11.svg │ │ │ ├── drawing-12.svg │ │ │ ├── grid.jpg │ │ │ └── points.jpg │ │ └── index.html │ │ ├── eclipse │ │ ├── imgs │ │ │ ├── addtobuildpath.png │ │ │ ├── clientclass.png │ │ │ ├── core1.jpg │ │ │ ├── core2.jpg │ │ │ ├── errors.jpg │ │ │ ├── extendPApplet.png │ │ │ ├── import.jpg │ │ │ ├── importcore.png │ │ │ ├── incore.png │ │ │ ├── newfile.png │ │ │ └── running.png │ │ └── index.html │ │ ├── electronics │ │ ├── imgs │ │ │ ├── 39-1(ACDC).svg │ │ │ ├── fg39-10.jpg │ │ │ ├── fg39-11.svg │ │ │ ├── fg39-12.svg │ │ │ ├── fg39-13.svg │ │ │ ├── fg39-14.svg │ │ │ ├── fg39-15.svg │ │ │ ├── fg39-16.svg │ │ │ ├── fg39-17.svg │ │ │ ├── fg39-2.jpg │ │ │ ├── fg39-4.jpg │ │ │ ├── fg39-5.jpg │ │ │ ├── fg39-6.jpg │ │ │ ├── fg39-7.jpg │ │ │ ├── fg39-8.svg │ │ │ └── fg39-9.svg │ │ └── index.html │ │ ├── gettingstarted │ │ ├── imgs │ │ │ ├── Ex_02_01.gif │ │ │ ├── Ex_02_02.gif │ │ │ ├── Fig_02_01.gif │ │ │ ├── Fig_02_01_2x.gif │ │ │ ├── Fig_02_02.gif │ │ │ ├── Fig_02_03.gif │ │ │ ├── Menu-Export.gif │ │ │ ├── Menu-New.gif │ │ │ ├── Menu-Open.gif │ │ │ ├── Menu-Play.gif │ │ │ ├── Menu-Save.gif │ │ │ ├── Menu-SketchPresent.gif │ │ │ └── Menu-Stop.gif │ │ └── index.html │ │ ├── imgs │ │ ├── 2darray.jpg │ │ ├── anatomy.jpg │ │ ├── android.jpg │ │ ├── arrays.jpg │ │ ├── basics.jpg │ │ ├── color.jpg │ │ ├── curves.jpg │ │ ├── data.jpg │ │ ├── debug.png │ │ ├── eclipse.jpg │ │ ├── electronics.jpg │ │ ├── gettingstarted.gif │ │ ├── helloprocessing.jpg │ │ ├── interactivity.jpg │ │ ├── network.jpg │ │ ├── objects.jpg │ │ ├── overview.jpg │ │ ├── p3_overview.png │ │ ├── p3d.jpg │ │ ├── pixels.jpg │ │ ├── print.jpg │ │ ├── pshader.jpg │ │ ├── pshape.jpg │ │ ├── rendering.jpg │ │ ├── sound.png │ │ ├── template.psd │ │ ├── text.jpg │ │ ├── transform2d.jpg │ │ ├── trig.jpg │ │ ├── typography.jpg │ │ ├── vectors.jpg │ │ └── video.png │ │ ├── index.html │ │ ├── interactivity │ │ ├── imgs │ │ │ ├── 07_01_1.png │ │ │ ├── 07_02_2.png │ │ │ ├── 07_03_1.png │ │ │ ├── 07_03_2.png │ │ │ ├── 07_04_1.png │ │ │ ├── 07_04_2.png │ │ │ ├── 07_05_1.png │ │ │ ├── 07_05_2.png │ │ │ ├── 07_07_1.png │ │ │ ├── 07_07_2.png │ │ │ ├── 07_08_1.png │ │ │ ├── 07_08_2.png │ │ │ ├── 07_09_1.png │ │ │ ├── 07_09_2.png │ │ │ ├── 07_09_3.png │ │ │ ├── 07_10_1.png │ │ │ ├── 07_10_2.png │ │ │ ├── 07_11_1.png │ │ │ ├── 07_11_2.png │ │ │ ├── 07_11_3.png │ │ │ ├── 07_11_4.png │ │ │ ├── 07_12_1.png │ │ │ ├── 07_12_2.png │ │ │ ├── 07_13_1.png │ │ │ ├── 07_13_2tif.png │ │ │ ├── 07_13_3.png │ │ │ ├── 07_14_1.png │ │ │ ├── 07_14_2.png │ │ │ ├── 07_14_3.png │ │ │ ├── 07_15_1.png │ │ │ ├── 07_15_2.png │ │ │ ├── 07_16_1.png │ │ │ ├── 07_16_2.png │ │ │ ├── 07_16_3.png │ │ │ ├── 07_17_1.png │ │ │ ├── 07_17_2.png │ │ │ ├── 07_17_3.png │ │ │ ├── 07_18_1.png │ │ │ ├── 07_18_2.png │ │ │ ├── 07_19_1.png │ │ │ ├── 07_19_2.png │ │ │ ├── 07_19_3.png │ │ │ ├── 07_20_1.png │ │ │ ├── 07_20_2.png │ │ │ ├── 07_20_3.png │ │ │ ├── 07_21_1.png │ │ │ ├── 07_21_2.png │ │ │ ├── 07_21_3.png │ │ │ ├── 07_22_1.png │ │ │ ├── 07_22_2.png │ │ │ ├── 07_22_3.png │ │ │ ├── 07_23_1.png │ │ │ ├── 07_23_2.png │ │ │ ├── 07_23_3.png │ │ │ ├── 07_24_1.png │ │ │ ├── 07_24_2.png │ │ │ ├── 07_25_1.png │ │ │ ├── 07_25_2.png │ │ │ ├── 07_25_3.png │ │ │ ├── 07_26_1.png │ │ │ ├── 07_26_2.png │ │ │ ├── 07_27-1.png │ │ │ ├── 07_27-2.png │ │ │ └── 07_27-3.png │ │ └── index.html │ │ ├── network │ │ ├── imgs │ │ │ └── fg55-1.svg │ │ └── index.html │ │ ├── objects │ │ ├── imgs │ │ │ ├── cells.jpg │ │ │ ├── class.jpg │ │ │ ├── constructor_arguments.jpg │ │ │ └── objects-1-cr.svg │ │ └── index.html │ │ ├── overview │ │ └── index.html │ │ ├── p3d │ │ ├── code │ │ │ └── RotateZ.pde │ │ ├── imgs │ │ │ ├── ambientlights.png │ │ │ ├── coordinatesystem.png │ │ │ ├── directionallight.png │ │ │ ├── eye.png │ │ │ ├── eye1.png │ │ │ ├── eye2.png │ │ │ ├── globe.png │ │ │ ├── lights.png │ │ │ ├── ortho.png │ │ │ ├── ortho1.png │ │ │ ├── ortho2.png │ │ │ ├── pan.png │ │ │ ├── pan1.png │ │ │ ├── pan2.png │ │ │ ├── primitives3D.png │ │ │ ├── pyramid3D.png │ │ │ ├── rotateX.png │ │ │ ├── rotateXYZ.png │ │ │ ├── rotateY.png │ │ │ ├── rotateZ.png │ │ │ ├── spotlight.png │ │ │ ├── texture1.png │ │ │ └── texture2.png │ │ └── index.html │ │ ├── pixels │ │ ├── imgs │ │ │ ├── datafolder.jpg │ │ │ ├── edges.jpg │ │ │ ├── explode1.jpg │ │ │ ├── explode2.jpg │ │ │ ├── explode3.jpg │ │ │ ├── flashlight.jpg │ │ │ ├── neighbors.jpg │ │ │ ├── neighbors.svg │ │ │ ├── pixelarray.jpg │ │ │ ├── pixelarray2d.jpg │ │ │ ├── pointillism.jpg │ │ │ ├── sharpen.jpg │ │ │ ├── threshold.jpg │ │ │ ├── tint1.jpg │ │ │ ├── tint2.jpg │ │ │ ├── tint3.jpg │ │ │ ├── tint4.jpg │ │ │ └── tint5.jpg │ │ └── index.html │ │ ├── print │ │ ├── imgs │ │ │ ├── fg40-1.jpg │ │ │ └── fg40-1.svg │ │ └── index.html │ │ ├── pshader │ │ ├── imgs │ │ │ ├── allshaders.png │ │ │ ├── alphalines.png │ │ │ ├── billboarding.png │ │ │ ├── bintex.png │ │ │ ├── bw.png │ │ │ ├── edges.png │ │ │ ├── emboss.png │ │ │ ├── lightmodel.png │ │ │ ├── line.png │ │ │ ├── pipeline.png │ │ │ ├── pixlight.png │ │ │ ├── point.png │ │ │ ├── pointsprite.png │ │ │ ├── texture.png │ │ │ └── vertlight.png │ │ └── index.html │ │ ├── pshape │ │ ├── imgs │ │ │ ├── pshape1.png │ │ │ ├── pshape2.png │ │ │ ├── pshape3.png │ │ │ ├── pshape4.png │ │ │ ├── pshape4a.png │ │ │ ├── pshape5.png │ │ │ ├── pshape6.png │ │ │ └── pshape7.png │ │ └── index.html │ │ ├── pvector │ │ ├── imgs │ │ │ ├── add.jpg │ │ │ ├── add.svg │ │ │ ├── bouncingball1.jpg │ │ │ ├── definition.jpg │ │ │ ├── definition.svg │ │ │ ├── div.jpg │ │ │ ├── div.svg │ │ │ ├── howtogetthere.jpg │ │ │ ├── howtogetthere.svg │ │ │ ├── mag.jpg │ │ │ ├── mag.svg │ │ │ ├── mouseaccelerate1.jpg │ │ │ ├── mouseaccelerate1.svg │ │ │ ├── mouseaccelerate2.jpg │ │ │ ├── mouseaccelerate2.svg │ │ │ ├── mult.jpg │ │ │ ├── mult.svg │ │ │ ├── normalize1.jpg │ │ │ ├── normalize1.svg │ │ │ ├── normalize2.jpg │ │ │ ├── normalize2.svg │ │ │ ├── pythagorean.jpg │ │ │ ├── pythagorean.svg │ │ │ ├── steps.jpg │ │ │ ├── steps.svg │ │ │ ├── sub.jpg │ │ │ ├── sub.svg │ │ │ ├── v.jpg │ │ │ ├── v.svg │ │ │ ├── vector_acc.jpg │ │ │ ├── vector_mag.jpg │ │ │ ├── vector_motion.jpg │ │ │ ├── vector_mouse1.jpg │ │ │ ├── vector_mouse2.jpg │ │ │ ├── vector_mult.jpg │ │ │ ├── vector_norm.jpg │ │ │ ├── vector_randacc.jpg │ │ │ └── vector_sub.jpg │ │ └── index.html │ │ ├── regex │ │ └── index.html │ │ ├── regular_polygon │ │ ├── imgs │ │ │ ├── sohcahtoa.jpg │ │ │ └── unit_circle.jpg │ │ └── index.html │ │ ├── rendering │ │ ├── imgs │ │ │ ├── 35_01.png │ │ │ ├── 35_02.png │ │ │ ├── 35_03.png │ │ │ ├── 35_04_1.png │ │ │ ├── 35_04_2.png │ │ │ ├── 35_04_3.png │ │ │ ├── 35_05_1.png │ │ │ ├── 35_05_2.png │ │ │ ├── 35_05_3.png │ │ │ ├── 35_05_4.png │ │ │ ├── 35_06_1.png │ │ │ ├── 35_06_2.png │ │ │ ├── 35_06_3.png │ │ │ ├── 35_06_4.png │ │ │ ├── 35_07_1.png │ │ │ ├── 35_07_2.png │ │ │ ├── 35_07_3.png │ │ │ ├── 35_07_4.png │ │ │ ├── 35_09_1.png │ │ │ ├── 35_09_2.png │ │ │ ├── 35_09_3.png │ │ │ ├── 35_10_1.png │ │ │ ├── 35_10_2.png │ │ │ ├── 35_10_3.png │ │ │ ├── 35_10_4.png │ │ │ ├── 35_11_1.png │ │ │ ├── 35_11_2.png │ │ │ ├── 35_11_3.png │ │ │ └── 35_11_4.png │ │ └── index.html │ │ ├── sound │ │ ├── imgs │ │ │ ├── 56-1.svg │ │ │ ├── 56-2.svg │ │ │ ├── 56-3.svg │ │ │ └── 56-4.svg │ │ └── index.html │ │ ├── text │ │ ├── imgs │ │ │ ├── boxes.jpg │ │ │ ├── charbychar.jpg │ │ │ ├── createfont.jpg │ │ │ ├── textalign.jpg │ │ │ ├── textcurve.jpg │ │ │ └── textwidth.jpg │ │ └── index.html │ │ ├── transform2d │ │ ├── imgs │ │ │ ├── bad_rotate.png │ │ │ ├── correct_rotate_grid.png │ │ │ ├── degrees.png │ │ │ ├── good_rotate.png │ │ │ ├── houses.png │ │ │ ├── moved_grid.png │ │ │ ├── new_coords.png │ │ │ ├── order.png │ │ │ ├── original.png │ │ │ ├── pivot.png │ │ │ ├── rotate_test.png │ │ │ ├── rotated_grid.png │ │ │ ├── scale1.png │ │ │ ├── transform2d.zip │ │ │ ├── wheel.png │ │ │ └── whole_robot.png │ │ └── index.html │ │ ├── trig │ │ ├── imgs │ │ │ ├── sohcahtoa.jpg │ │ │ ├── sohcahtoa.svg │ │ │ ├── trig_console.jpg │ │ │ ├── trig_curves.jpg │ │ │ ├── unit_circle.jpg │ │ │ └── unit_circle.svg │ │ └── index.html │ │ ├── tutorials.xml │ │ ├── typography │ │ ├── imgs │ │ │ ├── 12_01.png │ │ │ ├── 12_02.png │ │ │ ├── 12_03.png │ │ │ ├── 12_04.png │ │ │ ├── 12_05.png │ │ │ ├── 12_06.png │ │ │ ├── 12_08.png │ │ │ ├── 12_09.png │ │ │ ├── 12_10.png │ │ │ ├── 12_11.png │ │ │ ├── 12_12.png │ │ │ ├── 12_13.png │ │ │ ├── 12_14.png │ │ │ ├── 12_15.png │ │ │ ├── 12_16_1.png │ │ │ ├── 12_16_2.png │ │ │ ├── 12_17_1.png │ │ │ ├── 12_17_2.png │ │ │ ├── 12_18_1.png │ │ │ ├── 12_18_2.png │ │ │ ├── 12_18_3.png │ │ │ ├── 12_19_1.png │ │ │ ├── 12_19_2.png │ │ │ └── 12_19_3.png │ │ └── index.html │ │ └── video │ │ ├── imgs │ │ ├── fig_16_01_capture.png │ │ ├── fig_16_02_tintvideo.png │ │ ├── fig_16_03_flashlight.png │ │ ├── fig_16_04_blankgrid.png │ │ ├── fig_16_05_pixelated.png │ │ ├── fig_16_06_mirror.png │ │ ├── fig_16_07_blank_scribble.png │ │ └── fig_16_08_scribblermirror.png │ │ └── index.html └── template.ref.item.xml ├── contrib_generate ├── README.md ├── broken.conf ├── build_listing.py ├── build_listing_legacy.py ├── legacy.txt ├── skipped.conf └── sources.conf ├── css ├── changes.css ├── fonts │ ├── Enriqueta-Bold-webfont.eot │ ├── Enriqueta-Bold-webfont.woff │ ├── Enriqueta-License.txt │ ├── Enriqueta-Regular-webfont.eot │ └── Enriqueta-Regular-webfont.woff ├── forms.css ├── processing.css ├── processing_beta.css ├── radio.png ├── radio_checked.png └── style.css ├── download ├── install-arm.sh └── latest.txt ├── exhibition └── works │ ├── 000 │ ├── code.html │ ├── index.html │ ├── index_link.html │ ├── tissue.jar │ └── tissue.pde │ ├── 001 │ ├── index.html │ ├── index_link.html │ ├── parts │ │ ├── Univers-BlackOblique-8bit.vlw.gz │ │ ├── Univers-Bold-8bit.vlw.gz │ │ ├── frequency.english.gz │ │ └── innocents.gz │ └── valence.jar │ ├── 002 │ ├── InternetIncome.jar │ ├── InternetIncome.java │ ├── code.html │ ├── index.html │ ├── index_link.html │ ├── media │ │ ├── images0.jpg │ │ ├── images1.jpg │ │ ├── images10.jpg │ │ ├── images11.jpg │ │ ├── images12.jpg │ │ ├── images13.jpg │ │ ├── images14.jpg │ │ ├── images15.jpg │ │ ├── images16.jpg │ │ ├── images2.jpg │ │ ├── images3.jpg │ │ ├── images4.jpg │ │ ├── images5.jpg │ │ ├── images6.jpg │ │ ├── images7.jpg │ │ ├── images8.jpg │ │ └── images9.jpg │ └── softcinema.jar │ ├── 003 │ ├── code.html │ ├── index.html │ ├── index_link.html │ └── softcinema.jar │ ├── 004 │ ├── alphabot55.jar │ ├── alphabot55.pde │ ├── code.html │ ├── index.html │ └── index_link.html │ ├── acoustic │ └── acoustic.pde │ ├── aqueous │ ├── aqueous.mov │ ├── aqueous.zip │ ├── aqueous1.jpg │ ├── aqueous2.jpg │ ├── aqueous2_full.jpg │ ├── aqueous3.jpg │ ├── aqueous3_full.jpg │ ├── aqueous5.jpg │ ├── aqueous5_full.jpg │ ├── aqueous_ceiling.jpg │ ├── aqueous_circuit.jpg │ ├── aqueous_computer.jpg │ ├── aqueous_computer_in_ceiling.jpg │ ├── aqueous_floor_glow.jpg │ ├── aqueous_floor_glow_full.jpg │ ├── aqueous_installation.jpg │ ├── aqueous_installation_light.jpg │ ├── aqueous_lights_on2.jpg │ ├── aqueous_lights_on2_full.jpg │ ├── aqueous_main copy.jpg │ ├── aqueous_main.jpg │ ├── aqueous_reservoir.jpg │ ├── aqueous_reservoirs.jpg │ ├── aqueous_reservoirs2.jpg │ ├── aqueous_technical.jpg │ ├── aqueous_technical_full.jpg │ ├── index.html │ └── style.zai │ ├── articulate │ ├── articulate.jar │ ├── articulate.pde │ ├── index.html │ ├── index_link.html │ └── instructions.gif │ ├── base26 │ ├── base26.pde │ ├── base26oop.jar │ ├── index.html │ ├── index_link.html │ └── legend.gif │ ├── bees │ ├── bees6.jar │ ├── bees6.pde │ ├── index.html │ └── index_link.html │ ├── cdrawer │ ├── cdrawer.jar │ ├── cdrawer.pde │ ├── index.html │ └── index_link.html │ ├── chamber │ ├── chamberMedium.jar │ ├── chamberMedium.pde │ ├── index.html │ └── index_link.html │ ├── chronodraw │ └── chronodraw.txt │ ├── collider │ └── collider.pde │ ├── d5lv │ ├── D5LV.html │ ├── D5LV.jar │ ├── D5LV.pde │ ├── D5LVsmall.jar │ ├── index.html │ ├── index_link.html │ └── wintermute.jpg │ ├── discom │ ├── BApplet$1.class │ ├── BApplet$2.class │ ├── BApplet$3.class │ ├── BApplet$4.class │ ├── BApplet$Stopper.class │ ├── BApplet.class │ ├── BClient.class │ ├── BConstants.class │ ├── BFont.class │ ├── BGraphics.class │ ├── BImage.class │ ├── BLine.class │ ├── BPolygon.class │ ├── BServer$BServerClient.class │ ├── BServer.class │ ├── BSonic.class │ ├── BSound.class │ ├── BTriangle.class │ ├── Bush.jpg │ ├── Cheney.jpg │ ├── Edwards.jpg │ ├── Kerry.jpg │ ├── bushButton.jpg │ ├── cheneyButton.jpg │ ├── credit.gif │ ├── discom$button.class │ ├── discom$cube.class │ ├── discom.class │ ├── discom.jar │ ├── discom.pde │ ├── edwardsButton.jpg │ ├── index.html │ ├── index_link.html │ └── kerryButton.jpg │ ├── dynadraw │ ├── dynadraw.jar │ ├── dynadraw.pde │ └── index.html │ ├── ecstasy │ ├── bg.gif │ ├── index.html │ ├── java.gif │ ├── n_e_13.jar │ ├── n_e_13.pde │ ├── software_a.html │ ├── software_b.html │ ├── subtitle.gif │ ├── tec.css │ └── title.gif │ ├── europa │ ├── europa.jar │ ├── europa.pde │ ├── index.html │ └── index_link.html │ ├── fluidtime │ └── fluidtime.pde │ ├── haohao │ └── haohao.pde │ ├── hinundher │ ├── hinundher.jar │ ├── hinundher.pde │ ├── index.html │ └── index_link.html │ ├── images │ ├── 000.gif │ ├── 001.gif │ ├── 002.gif │ ├── 003.gif │ ├── 004.gif │ ├── 1pix.gif │ ├── 872a_jogan.gif │ ├── 872a_stanat.gif │ ├── acoustic.jpg │ ├── articulate.gif │ ├── back_off.gif │ ├── base26.gif │ ├── cdrawer.jpg │ ├── chamber.gif │ ├── chronodraw.gif │ ├── collider.jpg │ ├── d5lv.jpg │ ├── discom.jpg │ ├── ecstasy.gif │ ├── electro.jpg │ ├── esctasy.gif │ ├── europa.gif │ ├── fluidtime.jpg │ ├── haohao.jpg │ ├── header.gif │ ├── header_future.gif │ ├── header_old.gif │ ├── hinundher.gif │ ├── inequality.gif │ ├── jackolantern.jpg │ ├── juhuu.gif │ ├── katya.jpg │ ├── lifevslife.gif │ ├── liquid.jpg │ ├── liquidliquid.gif │ ├── min_mod.gif │ ├── moovl.gif │ ├── networklinks.gif │ ├── nudemengarden.gif │ ├── ortho.gif │ ├── pachinko.jpg │ ├── papa.jpg │ ├── pond.gif │ ├── proce55ing_web.jpg │ ├── redux.jpg │ ├── relations.gif │ ├── ricochet.gif │ ├── right_slub.gif │ ├── skyline.gif │ ├── slub.gif │ ├── sodaprocessing.gif │ ├── sonicwire.gif │ ├── starnursery.jpg │ ├── submit.gif │ ├── superhero.gif │ ├── techsupport.gif │ ├── thinking.jpg │ ├── timescape.jpg │ ├── tokyo.jpg │ ├── tracking.jpg │ ├── ttc.gif │ ├── wave.gif │ ├── wiggle.gif │ ├── withouttitle.jpg │ ├── xmas.gif │ └── yellowtail.gif │ ├── inequality │ ├── index.html │ ├── index_link.html │ ├── inequality.jar │ └── inequality.pde │ ├── jackolantern │ ├── index.html │ ├── index_link.html │ ├── jackolantern.jar │ └── jackolantern.pde │ ├── juhuu │ ├── index.html │ ├── index_link.html │ ├── juhuu.jar │ └── juhuu.pde │ ├── katya │ ├── index.html │ ├── index_link.html │ ├── katya.jar │ └── katya.pde │ ├── lifevslife │ └── lifevslife.pde │ ├── liquid │ ├── index.html │ ├── index_link.html │ ├── liquidsky.jar │ └── liquidsky.pde │ ├── liquidliquid │ ├── LiquidLiquid.pde │ ├── LiquidWen.jar │ └── index.html │ ├── metropop │ ├── 01-vi.jpg │ ├── 02-vi.jpg │ ├── 03-vi.jpg │ ├── 04-vi.jpg │ ├── 05-vi.jpg │ ├── 06-vi.jpg │ ├── 07-vi.jpg │ ├── Attractor.pde │ ├── Particle.pde │ ├── applet.html │ ├── carden.xml │ ├── claytoncubitt_mp09.jpg │ ├── cubitt.xml │ ├── early1.jpg │ ├── early2.jpg │ ├── early3.jpg │ ├── early4.jpg │ ├── early5.jpg │ ├── early6.jpg │ ├── early7.jpg │ ├── early8.jpg │ ├── index.html │ ├── loading.gif │ ├── metropop_screen.jar │ ├── metropop_screen.java │ ├── metropop_screen.pde │ └── slideshow.swf │ ├── min_mod │ └── min_mod.pde │ ├── moovl │ └── moovl.pde │ ├── nudemengarden │ └── nudemengarden.pde │ ├── ortho │ └── orthotype.pde │ ├── pachinko │ └── pachinko.pde │ ├── papa │ ├── img │ │ ├── 10016574.jpg │ │ ├── Papa-Roach-025.jpg │ │ ├── UT0068456.jpg │ │ ├── expl_qt.jpg │ │ ├── jets_qt.jpg │ │ ├── mission_qt.jpg │ │ ├── on_location.jpg │ │ ├── skull_qt.jpg │ │ ├── test.jpg │ │ ├── thumb.jpg │ │ ├── thumb_2.jpg │ │ ├── tick_01_green.jpg │ │ ├── tick_01_post.jpg │ │ ├── tick_02_green.jpg │ │ ├── tick_02_post.jpg │ │ ├── tick_bombs.jpg │ │ ├── tick_close.jpg │ │ ├── tick_end.jpg │ │ └── tick_skulls.jpg │ ├── index.html │ ├── large │ │ ├── 1_0.jpg │ │ ├── 1_1.jpg │ │ ├── 2_0.jpg │ │ ├── 2_1.jpg │ │ ├── 3_0.jpg │ │ ├── 3_1.jpg │ │ ├── 4_0.jpg │ │ ├── 4_1.jpg │ │ ├── 5_0.jpg │ │ ├── 5_1.jpg │ │ ├── 6_0.jpg │ │ └── 6_1.jpg │ ├── qt │ │ ├── explosion+endinginFIRE.mov │ │ ├── murder-mission-combined.mov │ │ ├── skull_zoom.mov │ │ └── threejets.mov │ ├── ticker_applet.txt │ └── ticker_applet.zip │ ├── pond │ ├── index.html │ ├── index_link.html │ ├── pond.jar │ └── pond.pde │ ├── redux │ ├── images │ │ ├── deliverance.jpg │ │ ├── frenchconnection.jpg │ │ ├── manwhowasntthere.jpg │ │ ├── roadtoperdition.jpg │ │ ├── serpico.jpg │ │ ├── taxidriver.jpg │ │ ├── theconversation.jpg │ │ └── vertigo.jpg │ ├── index.html │ ├── moviemap3.pde │ └── titles │ │ ├── conversation.gif │ │ ├── deliverance.gif │ │ ├── frenchconnection.gif │ │ ├── manwhowasntthere.gif │ │ ├── perdition.gif │ │ ├── redux.gif │ │ ├── serpico.gif │ │ ├── taxidriver.gif │ │ └── vertigo.gif │ ├── relations │ ├── index.html │ ├── index_link.html │ ├── relations_enviroment.jar │ ├── relations_enviroment.java │ └── relations_enviroment.pde │ ├── ricochet │ ├── index.html │ ├── index_link.html │ ├── ricochet.jar │ └── ricochet.pde │ ├── skyline │ ├── index.html │ ├── index_link.html │ ├── skyline.jar │ └── skyline.pde │ ├── sodaprocessing │ ├── index.html │ ├── index_link.html │ ├── sodaprocessing.jar │ └── sodaprocessing.pde │ ├── sonicwire │ └── sonicwire.pde │ ├── starnursery │ ├── Star_Nursery_Web.jar │ ├── Star_Nursery_Yeah.pde │ ├── Star_Nursery_Yeah.zip │ ├── index.html │ ├── index_link.html │ ├── rem_bg.gif │ └── rem_stars.mov │ ├── superhero │ ├── applet │ │ ├── superhero_7.jar │ │ ├── superhero_7.java │ │ ├── superhero_7.pde │ │ ├── top_applet_batman.html │ │ ├── top_applet_cpt_america.html │ │ ├── top_applet_superman.html │ │ └── top_applet_wonder_woman.html │ ├── bottom.html │ ├── img │ │ ├── batman.jpg │ │ ├── batman_says.gif │ │ ├── bottom_bg.gif │ │ ├── button_bar.gif │ │ ├── cpt_america.jpg │ │ ├── cpt_america_says.gif │ │ ├── noone_says.gif │ │ ├── superman.jpg │ │ ├── superman_says.gif │ │ ├── top_bg.gif │ │ ├── top_bg_applet.gif │ │ ├── wonderwoman.jpg │ │ └── wonderwoman_says.gif │ ├── index.html │ ├── index_link.html │ └── top_welcome.html │ ├── techsupport │ ├── index.html │ ├── index_link.html │ ├── processingtech.jpg │ ├── tech_support.jar │ └── tech_support.pde │ ├── timescape │ └── timescape.pde │ ├── tokyo │ ├── Tokyo.jar │ ├── Tokyo.pde │ ├── index.html │ └── index_link.html │ ├── tracking │ ├── index.html │ ├── index_link.html │ ├── projects │ │ └── tracking │ │ │ ├── tracking.fla │ │ │ ├── tracking.swf │ │ │ ├── videoPlayer1.swf │ │ │ ├── videoPlayer2.swf │ │ │ ├── videoPlayer3.swf │ │ │ ├── videoPlayer4.swf │ │ │ └── videos │ │ │ ├── fire1s.swf │ │ │ ├── ghosts1s.swf │ │ │ ├── moths1s.swf │ │ │ └── oral1s.swf │ └── tracking.pde │ ├── ttc │ └── ttc.java │ ├── versionb │ ├── index.html │ ├── index_link.html │ ├── mmj_project_FINALd.jar │ └── mmj_project_FINALd.pde │ ├── wiggle │ ├── index.html │ ├── index_link.html │ ├── wiggle.jar │ └── wiggle.pde │ ├── withouttitle │ ├── index.html │ ├── index_link.html │ ├── withouttitle.jar │ └── withouttitle.pde │ └── yellowtail │ ├── index.html │ ├── index_link.html │ ├── yellowtail.jar │ └── yellowtail.pde ├── favicon.ico ├── generate ├── README.md ├── _old │ ├── about.php │ ├── reference2.php │ ├── svn_update.php │ ├── test.domit.php │ ├── test.filenames.php │ ├── test.ref.php │ ├── test.translation.php │ ├── test.valid.xml.php │ ├── test.xpath.php │ └── tutorials.old.php ├── contributions.php ├── contributions_data.php ├── cover.php ├── css │ └── generate.css ├── domit │ ├── changelog.txt │ ├── docs │ │ ├── html.css │ │ ├── xml_domit_parser_docs.html │ │ └── xml_domit_parser_docs.xml │ ├── domitBanner.gif │ ├── license.txt │ ├── php_file_utilities.php │ ├── php_http_client_generic.php │ ├── php_http_client_include.php │ ├── php_http_connector.php │ ├── php_http_exceptions.php │ ├── php_http_proxy.php │ ├── test_domit │ │ ├── testing_domit.css │ │ ├── testing_domit.php │ │ └── timer.php │ ├── xml_domit_cache.php │ ├── xml_domit_doctor.php │ ├── xml_domit_getelementsbypath.php │ ├── xml_domit_include.php │ ├── xml_domit_lite_include.php │ ├── xml_domit_lite_parser.php │ ├── xml_domit_nodemaps.php │ ├── xml_domit_nodetools.php │ ├── xml_domit_parseattributes.php │ ├── xml_domit_parser.php │ ├── xml_domit_shared.php │ ├── xml_domit_utilities.php │ ├── xml_domit_xpath.php │ ├── xml_saxy_lite_parser.php │ ├── xml_saxy_parser.php │ └── xml_saxy_shared.php ├── environment.php ├── environment_local.php ├── examples.php ├── exhibition.php ├── foundation.php ├── index.php ├── javascript │ ├── generate.js │ └── reqwest.min.js ├── keywords_base.txt ├── keywords_create.cgi ├── lib │ ├── Curated.class.php │ ├── Example.class.php │ ├── Ref.class.php │ ├── Translation.class.php │ ├── XPath.class.php │ ├── files.inc.php │ ├── functions.inc.php │ └── xhtml.class.php ├── libraries.php ├── libraries_local.php ├── libraries_log_delete.php ├── mailinglist-decrypt.php ├── pull_latest.php ├── reference.php ├── staticpages.php ├── staticpages_local.php ├── template.php ├── tools.php ├── tools_local.php └── tutorials.php ├── img ├── 1pix.gif ├── back_off.gif ├── cc.png ├── drawing-with-code.jpg ├── feed.gif ├── foundation-head-test.png ├── header.gif ├── learning │ ├── Processing-Contents-070603.pdf │ ├── Processing-Examples-002.zip │ ├── Processing-Sample-070607.pdf │ ├── books │ │ ├── 10-print-sm.jpg │ │ ├── algorithms-for-visual-design-sm.jpg │ │ ├── algorithms-for-visual-design.jpg │ │ ├── built-with-processing-sm.jpg │ │ ├── built-with-processing.jpg │ │ ├── coding-art.jpg │ │ ├── compendium-sm.png │ │ ├── creating-procedural-artworks.jpg │ │ ├── creating-programming-cookbook-sm.jpg │ │ ├── creative-coding-sm.jpg │ │ ├── creative-coding.jpg │ │ ├── creative-programming-cookbook.jpg │ │ ├── data-driven-graphic-design.jpg │ │ ├── einfuehrung-ins-programmieren-mit-processing.jpg │ │ ├── form-code-sm.jpg │ │ ├── generative-art-sm.jpg │ │ ├── generative-art.png │ │ ├── generative-design-sm.jpg │ │ ├── generative-design.jpg │ │ ├── generative-gestaltung-sm.jpg │ │ ├── generative-gestaltung.jpg │ │ ├── getting-started-with-arduino-sm.jpg │ │ ├── getting-started-with-processing-2e.png │ │ ├── getting-started-with-processing-sm-2e.png │ │ ├── getting-started-with-processing-sm.jpg │ │ ├── getting-started-with-processing.jpg │ │ ├── il-codice-dei-cibernetici-sm.jpg │ │ ├── il-codice-dei-cibernetici.jpg │ │ ├── learning-processing-2-sm.jpg │ │ ├── learning-processing-2.jpg │ │ ├── learning-processing-sm.jpg │ │ ├── learning-processing.jpg │ │ ├── making-things-see-sm.jpg │ │ ├── making-things-see.jpg │ │ ├── making-things-talk-2-sm.jpg │ │ ├── making-things-talk-2.jpg │ │ ├── making-things-talk-sm.jpg │ │ ├── making-things-talk.jpg │ │ ├── nature-of-code-sm.jpg │ │ ├── nature-of-code.jpg │ │ ├── o-codigo.jpg │ │ ├── opencv.jpg │ │ ├── pro-processing.jpg │ │ ├── processing-a-programming-handbook-sm-alt.jpg │ │ ├── processing-a-programming-handbook-sm.jpg │ │ ├── processing-a-programming-handbook.jpg │ │ ├── processing-an-introduction-to-programming.png │ │ ├── processing-android-sm.jpg │ │ ├── processing-android.jpg │ │ ├── processing-basics.png │ │ ├── processing-creative-coding-sm.jpg │ │ ├── processing-creative-coding.jpg │ │ ├── processing-creative-coding2.jpg │ │ ├── processing-creative-coding2_sm.jpg │ │ ├── processing-for-flash-developers-sm.jpg │ │ ├── processing-for-flash-developers.jpg │ │ ├── processing-for-visual-artists-sm.jpg │ │ ├── processing-for-visual-artists.jpg │ │ ├── processing-lecode.png │ │ ├── processing-second-edition.png │ │ ├── processing_andres_wanner.png │ │ ├── programming-101.jpg │ │ ├── programming-for-artists.jpg │ │ ├── programming-interactivity-sm.jpg │ │ ├── programming-interactivity.jpg │ │ ├── rapid-android-development-sm.jpg │ │ ├── rapid-android-development.jpg │ │ ├── sparkfun.png │ │ ├── sparkfun_sm.png │ │ ├── visualizing-data-sm.jpg │ │ └── visualizing-data.jpg │ └── processing-errata.txt ├── membership │ ├── membership-diy.jpg │ ├── membership-learntoteach.jpg │ ├── membership-miami.jpg │ └── membership-p5.jpg ├── nav_bottomarrow.gif ├── next_off.gif ├── pcd17.png ├── processing-handbook-second-edition-lg.jpg ├── processing-handbook-second-edition.jpg ├── processing-logo-gsoc-2013.png ├── processing-logo.png ├── processing-logo.svg ├── processing-old.ico ├── processing-web.png ├── processing2-logo-256x256.jpg ├── processing2-logo.jpg ├── processing3-logo.png ├── processing_blog.gif ├── processing_feed.gif ├── processing_forum_back.jpg ├── processing_forum_logo.png ├── processing_forum_tab-sel.png ├── raquo.png ├── raquo.svg ├── search.png ├── search.svg ├── search_button.gif ├── select_arrow.gif └── up_arrow.gif ├── java_generate ├── GenerateDescriptions.py ├── README.md ├── ReferenceGenerator │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── androidrefBuild.sh │ ├── bin │ │ ├── ProcessingWeblet.class │ │ └── writers │ │ │ ├── BaseWriter.class │ │ │ ├── ClassWriter.class │ │ │ ├── FieldWriter.class │ │ │ ├── FileUtils.class │ │ │ ├── FunctionWriter.class │ │ │ ├── IndexWriter$Alphabetizer.class │ │ │ ├── IndexWriter.class │ │ │ ├── LibraryIndexWriter.class │ │ │ ├── LibraryWriter.class │ │ │ ├── MethodWriter.class │ │ │ ├── Shared.class │ │ │ ├── TemplateWriter.class │ │ │ └── XMLReferenceWriter.class │ ├── build.xml │ ├── processingrefBuild.sh │ ├── src │ │ ├── ProcessingWeblet.java │ │ └── writers │ │ │ ├── BaseWriter.java │ │ │ ├── ClassWriter.java │ │ │ ├── FieldWriter.java │ │ │ ├── FileUtils.java │ │ │ ├── FunctionWriter.java │ │ │ ├── IndexWriter.java │ │ │ ├── LibraryIndexWriter.java │ │ │ ├── LibraryWriter.java │ │ │ ├── MethodWriter.java │ │ │ ├── Shared.java │ │ │ ├── TemplateWriter.java │ │ │ └── XMLReferenceWriter.java │ └── test │ │ └── seetags.java ├── templates │ ├── class.template.html │ ├── description.partial.html │ ├── example.partial.html │ ├── examples.partial.html │ ├── field.syntax.partial.html │ ├── function.syntax.partial.html │ ├── generic.template.html │ ├── index.alphabetical.template.html │ ├── index.entry.partial.html │ ├── index.template.html │ ├── jquery.local.partial.html │ ├── jquery.web.partial.html │ ├── library.index.template.html │ ├── library.section.partial.html │ ├── method.parameter.partial.html │ ├── method.syntax.partial.html │ ├── nav.local.template.html │ ├── nav.web.template.html │ ├── parameter.partial.html │ ├── property.partial.html │ └── related.partial.html └── utils.py ├── javascript ├── MM_functions.js ├── jquery-1.9.1.min.js ├── mode-select.js ├── modernizr-2.6.2.touch.js ├── p5.dom.min.js ├── p5.min.js ├── processing.js ├── prototype.js ├── site.js └── slideshow.js ├── learning └── books │ ├── media.zip │ └── processing-errata.txt ├── subscribe ├── AES.class.php └── index.php ├── templates ├── rss.php ├── rss.xml ├── template.cover.html ├── template.curated.archive.html ├── template.curated.item.html ├── template.example.html ├── template.examples.html ├── template.html ├── template.local.html ├── template.nav.php ├── template.php ├── template.ref.index.ext.html ├── template.ref.index.html ├── template.reference.html ├── template.reference.item.html └── template.translation.html ├── todo-web.txt └── todo.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/README.md -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/config.php -------------------------------------------------------------------------------- /content/api_en/FloatDict.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatDict.xml -------------------------------------------------------------------------------- /content/api_en/FloatDict_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatDict_add.xml -------------------------------------------------------------------------------- /content/api_en/FloatDict_div.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatDict_div.xml -------------------------------------------------------------------------------- /content/api_en/FloatDict_get.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatDict_get.xml -------------------------------------------------------------------------------- /content/api_en/FloatDict_keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatDict_keys.xml -------------------------------------------------------------------------------- /content/api_en/FloatDict_mult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatDict_mult.xml -------------------------------------------------------------------------------- /content/api_en/FloatDict_set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatDict_set.xml -------------------------------------------------------------------------------- /content/api_en/FloatDict_size.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatDict_size.xml -------------------------------------------------------------------------------- /content/api_en/FloatDict_sub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatDict_sub.xml -------------------------------------------------------------------------------- /content/api_en/FloatList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatList.xml -------------------------------------------------------------------------------- /content/api_en/FloatList_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatList_add.xml -------------------------------------------------------------------------------- /content/api_en/FloatList_div.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatList_div.xml -------------------------------------------------------------------------------- /content/api_en/FloatList_get.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatList_get.xml -------------------------------------------------------------------------------- /content/api_en/FloatList_max.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatList_max.xml -------------------------------------------------------------------------------- /content/api_en/FloatList_min.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatList_min.xml -------------------------------------------------------------------------------- /content/api_en/FloatList_mult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatList_mult.xml -------------------------------------------------------------------------------- /content/api_en/FloatList_set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatList_set.xml -------------------------------------------------------------------------------- /content/api_en/FloatList_size.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatList_size.xml -------------------------------------------------------------------------------- /content/api_en/FloatList_sort.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatList_sort.xml -------------------------------------------------------------------------------- /content/api_en/FloatList_sub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/FloatList_sub.xml -------------------------------------------------------------------------------- /content/api_en/HALF_PI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/HALF_PI.xml -------------------------------------------------------------------------------- /content/api_en/IntDict.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntDict.xml -------------------------------------------------------------------------------- /content/api_en/IntDict_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntDict_add.xml -------------------------------------------------------------------------------- /content/api_en/IntDict_clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntDict_clear.xml -------------------------------------------------------------------------------- /content/api_en/IntDict_div.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntDict_div.xml -------------------------------------------------------------------------------- /content/api_en/IntDict_get.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntDict_get.xml -------------------------------------------------------------------------------- /content/api_en/IntDict_hasKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntDict_hasKey.xml -------------------------------------------------------------------------------- /content/api_en/IntDict_keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntDict_keys.xml -------------------------------------------------------------------------------- /content/api_en/IntDict_mult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntDict_mult.xml -------------------------------------------------------------------------------- /content/api_en/IntDict_remove.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntDict_remove.xml -------------------------------------------------------------------------------- /content/api_en/IntDict_set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntDict_set.xml -------------------------------------------------------------------------------- /content/api_en/IntDict_size.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntDict_size.xml -------------------------------------------------------------------------------- /content/api_en/IntDict_sub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntDict_sub.xml -------------------------------------------------------------------------------- /content/api_en/IntDict_values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntDict_values.xml -------------------------------------------------------------------------------- /content/api_en/IntList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntList.xml -------------------------------------------------------------------------------- /content/api_en/IntList_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntList_add.xml -------------------------------------------------------------------------------- /content/api_en/IntList_append.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntList_append.xml -------------------------------------------------------------------------------- /content/api_en/IntList_array.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntList_array.xml -------------------------------------------------------------------------------- /content/api_en/IntList_clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntList_clear.xml -------------------------------------------------------------------------------- /content/api_en/IntList_div.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntList_div.xml -------------------------------------------------------------------------------- /content/api_en/IntList_get.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntList_get.xml -------------------------------------------------------------------------------- /content/api_en/IntList_max.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntList_max.xml -------------------------------------------------------------------------------- /content/api_en/IntList_min.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntList_min.xml -------------------------------------------------------------------------------- /content/api_en/IntList_mult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntList_mult.xml -------------------------------------------------------------------------------- /content/api_en/IntList_remove.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntList_remove.xml -------------------------------------------------------------------------------- /content/api_en/IntList_set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntList_set.xml -------------------------------------------------------------------------------- /content/api_en/IntList_size.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntList_size.xml -------------------------------------------------------------------------------- /content/api_en/IntList_sort.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntList_sort.xml -------------------------------------------------------------------------------- /content/api_en/IntList_sub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/IntList_sub.xml -------------------------------------------------------------------------------- /content/api_en/JSONArray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/JSONArray.xml -------------------------------------------------------------------------------- /content/api_en/JSONArray_size.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/JSONArray_size.xml -------------------------------------------------------------------------------- /content/api_en/JSONObject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/JSONObject.xml -------------------------------------------------------------------------------- /content/api_en/LIB_dxf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/LIB_dxf/index.html -------------------------------------------------------------------------------- /content/api_en/LIB_io/GPIO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/LIB_io/GPIO.xml -------------------------------------------------------------------------------- /content/api_en/LIB_io/I2C.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/LIB_io/I2C.xml -------------------------------------------------------------------------------- /content/api_en/LIB_io/LED.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/LIB_io/LED.xml -------------------------------------------------------------------------------- /content/api_en/LIB_io/PWM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/LIB_io/PWM.xml -------------------------------------------------------------------------------- /content/api_en/LIB_io/PWM_set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/LIB_io/PWM_set.xml -------------------------------------------------------------------------------- /content/api_en/LIB_io/SPI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/LIB_io/SPI.xml -------------------------------------------------------------------------------- /content/api_en/LIB_io/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/LIB_io/index.html -------------------------------------------------------------------------------- /content/api_en/LIB_net/Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/LIB_net/Client.xml -------------------------------------------------------------------------------- /content/api_en/LIB_net/Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/LIB_net/Server.xml -------------------------------------------------------------------------------- /content/api_en/LIB_net/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/LIB_net/index.html -------------------------------------------------------------------------------- /content/api_en/LIB_pdf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/LIB_pdf/index.html -------------------------------------------------------------------------------- /content/api_en/LIB_sound/Env.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/LIB_sound/Env.xml -------------------------------------------------------------------------------- /content/api_en/LIB_sound/FFT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/LIB_sound/FFT.xml -------------------------------------------------------------------------------- /content/api_en/LIB_svg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/LIB_svg/index.html -------------------------------------------------------------------------------- /content/api_en/PFont.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PFont.xml -------------------------------------------------------------------------------- /content/api_en/PFont_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PFont_list.xml -------------------------------------------------------------------------------- /content/api_en/PGraphics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PGraphics.xml -------------------------------------------------------------------------------- /content/api_en/PI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PI.xml -------------------------------------------------------------------------------- /content/api_en/PImage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PImage.xml -------------------------------------------------------------------------------- /content/api_en/PImage_blend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PImage_blend.xml -------------------------------------------------------------------------------- /content/api_en/PImage_copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PImage_copy.xml -------------------------------------------------------------------------------- /content/api_en/PImage_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PImage_filter.xml -------------------------------------------------------------------------------- /content/api_en/PImage_get.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PImage_get.xml -------------------------------------------------------------------------------- /content/api_en/PImage_height.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PImage_height.xml -------------------------------------------------------------------------------- /content/api_en/PImage_mask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PImage_mask.xml -------------------------------------------------------------------------------- /content/api_en/PImage_pixels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PImage_pixels.xml -------------------------------------------------------------------------------- /content/api_en/PImage_resize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PImage_resize.xml -------------------------------------------------------------------------------- /content/api_en/PImage_save.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PImage_save.xml -------------------------------------------------------------------------------- /content/api_en/PImage_set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PImage_set.xml -------------------------------------------------------------------------------- /content/api_en/PImage_width.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PImage_width.xml -------------------------------------------------------------------------------- /content/api_en/PShader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PShader.xml -------------------------------------------------------------------------------- /content/api_en/PShader_set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PShader_set.xml -------------------------------------------------------------------------------- /content/api_en/PShape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PShape.xml -------------------------------------------------------------------------------- /content/api_en/PShape_height.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PShape_height.xml -------------------------------------------------------------------------------- /content/api_en/PShape_rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PShape_rotate.xml -------------------------------------------------------------------------------- /content/api_en/PShape_rotateX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PShape_rotateX.xml -------------------------------------------------------------------------------- /content/api_en/PShape_rotateY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PShape_rotateY.xml -------------------------------------------------------------------------------- /content/api_en/PShape_rotateZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PShape_rotateZ.xml -------------------------------------------------------------------------------- /content/api_en/PShape_scale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PShape_scale.xml -------------------------------------------------------------------------------- /content/api_en/PShape_setFill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PShape_setFill.xml -------------------------------------------------------------------------------- /content/api_en/PShape_width.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PShape_width.xml -------------------------------------------------------------------------------- /content/api_en/PVector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector.xml -------------------------------------------------------------------------------- /content/api_en/PVector_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_add.xml -------------------------------------------------------------------------------- /content/api_en/PVector_array.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_array.xml -------------------------------------------------------------------------------- /content/api_en/PVector_copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_copy.xml -------------------------------------------------------------------------------- /content/api_en/PVector_cross.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_cross.xml -------------------------------------------------------------------------------- /content/api_en/PVector_dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_dist.xml -------------------------------------------------------------------------------- /content/api_en/PVector_div.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_div.xml -------------------------------------------------------------------------------- /content/api_en/PVector_dot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_dot.xml -------------------------------------------------------------------------------- /content/api_en/PVector_get.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_get.xml -------------------------------------------------------------------------------- /content/api_en/PVector_lerp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_lerp.xml -------------------------------------------------------------------------------- /content/api_en/PVector_limit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_limit.xml -------------------------------------------------------------------------------- /content/api_en/PVector_mag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_mag.xml -------------------------------------------------------------------------------- /content/api_en/PVector_magSq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_magSq.xml -------------------------------------------------------------------------------- /content/api_en/PVector_mult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_mult.xml -------------------------------------------------------------------------------- /content/api_en/PVector_rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_rotate.xml -------------------------------------------------------------------------------- /content/api_en/PVector_set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_set.xml -------------------------------------------------------------------------------- /content/api_en/PVector_setMag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_setMag.xml -------------------------------------------------------------------------------- /content/api_en/PVector_sub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_sub.xml -------------------------------------------------------------------------------- /content/api_en/PVector_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_x.xml -------------------------------------------------------------------------------- /content/api_en/PVector_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_y.xml -------------------------------------------------------------------------------- /content/api_en/PVector_z.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/PVector_z.xml -------------------------------------------------------------------------------- /content/api_en/QUARTER_PI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/QUARTER_PI.xml -------------------------------------------------------------------------------- /content/api_en/StringDict.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/StringDict.xml -------------------------------------------------------------------------------- /content/api_en/StringDict_get.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/StringDict_get.xml -------------------------------------------------------------------------------- /content/api_en/StringDict_set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/StringDict_set.xml -------------------------------------------------------------------------------- /content/api_en/StringList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/StringList.xml -------------------------------------------------------------------------------- /content/api_en/StringList_get.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/StringList_get.xml -------------------------------------------------------------------------------- /content/api_en/StringList_set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/StringList_set.xml -------------------------------------------------------------------------------- /content/api_en/TAU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/TAU.xml -------------------------------------------------------------------------------- /content/api_en/TWO_PI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/TWO_PI.xml -------------------------------------------------------------------------------- /content/api_en/Table.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/Table.xml -------------------------------------------------------------------------------- /content/api_en/TableRow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/TableRow.xml -------------------------------------------------------------------------------- /content/api_en/Table_addRow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/Table_addRow.xml -------------------------------------------------------------------------------- /content/api_en/Table_findRow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/Table_findRow.xml -------------------------------------------------------------------------------- /content/api_en/Table_findRows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/Table_findRows.xml -------------------------------------------------------------------------------- /content/api_en/Table_getFloat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/Table_getFloat.xml -------------------------------------------------------------------------------- /content/api_en/Table_getInt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/Table_getInt.xml -------------------------------------------------------------------------------- /content/api_en/Table_getRow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/Table_getRow.xml -------------------------------------------------------------------------------- /content/api_en/Table_matchRow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/Table_matchRow.xml -------------------------------------------------------------------------------- /content/api_en/Table_rows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/Table_rows.xml -------------------------------------------------------------------------------- /content/api_en/Table_setFloat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/Table_setFloat.xml -------------------------------------------------------------------------------- /content/api_en/Table_setInt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/Table_setInt.xml -------------------------------------------------------------------------------- /content/api_en/Table_sort.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/Table_sort.xml -------------------------------------------------------------------------------- /content/api_en/Table_trim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/Table_trim.xml -------------------------------------------------------------------------------- /content/api_en/XML.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/XML.xml -------------------------------------------------------------------------------- /content/api_en/XML_addChild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/XML_addChild.xml -------------------------------------------------------------------------------- /content/api_en/XML_format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/XML_format.xml -------------------------------------------------------------------------------- /content/api_en/XML_getChild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/XML_getChild.xml -------------------------------------------------------------------------------- /content/api_en/XML_getContent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/XML_getContent.xml -------------------------------------------------------------------------------- /content/api_en/XML_getFloat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/XML_getFloat.xml -------------------------------------------------------------------------------- /content/api_en/XML_getInt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/XML_getInt.xml -------------------------------------------------------------------------------- /content/api_en/XML_getName.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/XML_getName.xml -------------------------------------------------------------------------------- /content/api_en/XML_getParent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/XML_getParent.xml -------------------------------------------------------------------------------- /content/api_en/XML_getString.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/XML_getString.xml -------------------------------------------------------------------------------- /content/api_en/XML_setContent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/XML_setContent.xml -------------------------------------------------------------------------------- /content/api_en/XML_setFloat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/XML_setFloat.xml -------------------------------------------------------------------------------- /content/api_en/XML_setInt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/XML_setInt.xml -------------------------------------------------------------------------------- /content/api_en/XML_setName.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/XML_setName.xml -------------------------------------------------------------------------------- /content/api_en/XML_setString.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/XML_setString.xml -------------------------------------------------------------------------------- /content/api_en/XML_toString.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/XML_toString.xml -------------------------------------------------------------------------------- /content/api_en/abs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/abs.xml -------------------------------------------------------------------------------- /content/api_en/acos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/acos.xml -------------------------------------------------------------------------------- /content/api_en/alpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/alpha.xml -------------------------------------------------------------------------------- /content/api_en/ambient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/ambient.xml -------------------------------------------------------------------------------- /content/api_en/ambientLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/ambientLight.xml -------------------------------------------------------------------------------- /content/api_en/append.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/append.xml -------------------------------------------------------------------------------- /content/api_en/applyMatrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/applyMatrix.xml -------------------------------------------------------------------------------- /content/api_en/arc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/arc.xml -------------------------------------------------------------------------------- /content/api_en/arrayCopy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/arrayCopy.xml -------------------------------------------------------------------------------- /content/api_en/asin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/asin.xml -------------------------------------------------------------------------------- /content/api_en/atan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/atan.xml -------------------------------------------------------------------------------- /content/api_en/atan2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/atan2.xml -------------------------------------------------------------------------------- /content/api_en/attrib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/attrib.xml -------------------------------------------------------------------------------- /content/api_en/background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/background.xml -------------------------------------------------------------------------------- /content/api_en/beginCamera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/beginCamera.xml -------------------------------------------------------------------------------- /content/api_en/beginContour.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/beginContour.xml -------------------------------------------------------------------------------- /content/api_en/beginRaw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/beginRaw.xml -------------------------------------------------------------------------------- /content/api_en/beginRecord.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/beginRecord.xml -------------------------------------------------------------------------------- /content/api_en/beginShape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/beginShape.xml -------------------------------------------------------------------------------- /content/api_en/bezier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/bezier.xml -------------------------------------------------------------------------------- /content/api_en/bezierDetail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/bezierDetail.xml -------------------------------------------------------------------------------- /content/api_en/bezierPoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/bezierPoint.xml -------------------------------------------------------------------------------- /content/api_en/bezierTangent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/bezierTangent.xml -------------------------------------------------------------------------------- /content/api_en/bezierVertex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/bezierVertex.xml -------------------------------------------------------------------------------- /content/api_en/binary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/binary.xml -------------------------------------------------------------------------------- /content/api_en/blank.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/blank.xml -------------------------------------------------------------------------------- /content/api_en/blend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/blend.xml -------------------------------------------------------------------------------- /content/api_en/blendColor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/blendColor.xml -------------------------------------------------------------------------------- /content/api_en/blendMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/blendMode.xml -------------------------------------------------------------------------------- /content/api_en/blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/blue.xml -------------------------------------------------------------------------------- /content/api_en/box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/box.xml -------------------------------------------------------------------------------- /content/api_en/brightness.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/brightness.xml -------------------------------------------------------------------------------- /content/api_en/camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/camera.xml -------------------------------------------------------------------------------- /content/api_en/ceil.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/ceil.xml -------------------------------------------------------------------------------- /content/api_en/circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/circle.xml -------------------------------------------------------------------------------- /content/api_en/clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/clear.xml -------------------------------------------------------------------------------- /content/api_en/clip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/clip.xml -------------------------------------------------------------------------------- /content/api_en/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/color.xml -------------------------------------------------------------------------------- /content/api_en/colorMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/colorMode.xml -------------------------------------------------------------------------------- /content/api_en/concat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/concat.xml -------------------------------------------------------------------------------- /content/api_en/constrain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/constrain.xml -------------------------------------------------------------------------------- /content/api_en/copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/copy.xml -------------------------------------------------------------------------------- /content/api_en/cos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/cos.xml -------------------------------------------------------------------------------- /content/api_en/createFont.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/createFont.xml -------------------------------------------------------------------------------- /content/api_en/createGraphics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/createGraphics.xml -------------------------------------------------------------------------------- /content/api_en/createImage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/createImage.xml -------------------------------------------------------------------------------- /content/api_en/createInput.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/createInput.xml -------------------------------------------------------------------------------- /content/api_en/createOutput.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/createOutput.xml -------------------------------------------------------------------------------- /content/api_en/createReader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/createReader.xml -------------------------------------------------------------------------------- /content/api_en/createShape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/createShape.xml -------------------------------------------------------------------------------- /content/api_en/createWriter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/createWriter.xml -------------------------------------------------------------------------------- /content/api_en/cursor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/cursor.xml -------------------------------------------------------------------------------- /content/api_en/curve.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/curve.xml -------------------------------------------------------------------------------- /content/api_en/curveDetail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/curveDetail.xml -------------------------------------------------------------------------------- /content/api_en/curvePoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/curvePoint.xml -------------------------------------------------------------------------------- /content/api_en/curveTangent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/curveTangent.xml -------------------------------------------------------------------------------- /content/api_en/curveTightness.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/curveTightness.xml -------------------------------------------------------------------------------- /content/api_en/curveVertex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/curveVertex.xml -------------------------------------------------------------------------------- /content/api_en/day.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/day.xml -------------------------------------------------------------------------------- /content/api_en/degrees.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/degrees.xml -------------------------------------------------------------------------------- /content/api_en/delay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/delay.xml -------------------------------------------------------------------------------- /content/api_en/displayDensity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/displayDensity.xml -------------------------------------------------------------------------------- /content/api_en/displayHeight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/displayHeight.xml -------------------------------------------------------------------------------- /content/api_en/displayWidth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/displayWidth.xml -------------------------------------------------------------------------------- /content/api_en/dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/dist.xml -------------------------------------------------------------------------------- /content/api_en/draw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/draw.xml -------------------------------------------------------------------------------- /content/api_en/ellipse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/ellipse.xml -------------------------------------------------------------------------------- /content/api_en/ellipseMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/ellipseMode.xml -------------------------------------------------------------------------------- /content/api_en/emissive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/emissive.xml -------------------------------------------------------------------------------- /content/api_en/endCamera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/endCamera.xml -------------------------------------------------------------------------------- /content/api_en/endContour.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/endContour.xml -------------------------------------------------------------------------------- /content/api_en/endRaw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/endRaw.xml -------------------------------------------------------------------------------- /content/api_en/endRecord.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/endRecord.xml -------------------------------------------------------------------------------- /content/api_en/endShape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/endShape.xml -------------------------------------------------------------------------------- /content/api_en/exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/exit.xml -------------------------------------------------------------------------------- /content/api_en/exp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/exp.xml -------------------------------------------------------------------------------- /content/api_en/expand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/expand.xml -------------------------------------------------------------------------------- /content/api_en/fill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/fill.xml -------------------------------------------------------------------------------- /content/api_en/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/filter.xml -------------------------------------------------------------------------------- /content/api_en/floor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/floor.xml -------------------------------------------------------------------------------- /content/api_en/focused.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/focused.xml -------------------------------------------------------------------------------- /content/api_en/frameCount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/frameCount.xml -------------------------------------------------------------------------------- /content/api_en/frameRate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/frameRate.xml -------------------------------------------------------------------------------- /content/api_en/frameRate_var.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/frameRate_var.xml -------------------------------------------------------------------------------- /content/api_en/frustum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/frustum.xml -------------------------------------------------------------------------------- /content/api_en/fullScreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/fullScreen.xml -------------------------------------------------------------------------------- /content/api_en/get.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/get.xml -------------------------------------------------------------------------------- /content/api_en/green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/green.xml -------------------------------------------------------------------------------- /content/api_en/height.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/height.xml -------------------------------------------------------------------------------- /content/api_en/hex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/hex.xml -------------------------------------------------------------------------------- /content/api_en/hour.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/hour.xml -------------------------------------------------------------------------------- /content/api_en/hue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/hue.xml -------------------------------------------------------------------------------- /content/api_en/image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/image.xml -------------------------------------------------------------------------------- /content/api_en/imageMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/imageMode.xml -------------------------------------------------------------------------------- /content/api_en/images/header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/images/header.gif -------------------------------------------------------------------------------- /content/api_en/include/Array.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/Array.xml -------------------------------------------------------------------------------- /content/api_en/include/Object.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/Object.xml -------------------------------------------------------------------------------- /content/api_en/include/String.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/String.xml -------------------------------------------------------------------------------- /content/api_en/include/assign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/assign.xml -------------------------------------------------------------------------------- /content/api_en/include/break.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/break.xml -------------------------------------------------------------------------------- /content/api_en/include/byte.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/byte.xml -------------------------------------------------------------------------------- /content/api_en/include/case.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/case.xml -------------------------------------------------------------------------------- /content/api_en/include/catch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/catch.xml -------------------------------------------------------------------------------- /content/api_en/include/char.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/char.xml -------------------------------------------------------------------------------- /content/api_en/include/class.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/class.xml -------------------------------------------------------------------------------- /content/api_en/include/comma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/comma.xml -------------------------------------------------------------------------------- /content/api_en/include/divide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/divide.xml -------------------------------------------------------------------------------- /content/api_en/include/dot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/dot.xml -------------------------------------------------------------------------------- /content/api_en/include/double.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/double.xml -------------------------------------------------------------------------------- /content/api_en/include/else.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/else.xml -------------------------------------------------------------------------------- /content/api_en/include/false.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/false.xml -------------------------------------------------------------------------------- /content/api_en/include/final.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/final.xml -------------------------------------------------------------------------------- /content/api_en/include/float.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/float.xml -------------------------------------------------------------------------------- /content/api_en/include/for.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/for.xml -------------------------------------------------------------------------------- /content/api_en/include/hint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/hint.xml -------------------------------------------------------------------------------- /content/api_en/include/if.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/if.xml -------------------------------------------------------------------------------- /content/api_en/include/import.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/import.xml -------------------------------------------------------------------------------- /content/api_en/include/int.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/int.xml -------------------------------------------------------------------------------- /content/api_en/include/long.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/long.xml -------------------------------------------------------------------------------- /content/api_en/include/minus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/minus.xml -------------------------------------------------------------------------------- /content/api_en/include/modulo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/modulo.xml -------------------------------------------------------------------------------- /content/api_en/include/new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/new.xml -------------------------------------------------------------------------------- /content/api_en/include/null.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/null.xml -------------------------------------------------------------------------------- /content/api_en/include/public.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/public.xml -------------------------------------------------------------------------------- /content/api_en/include/return.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/return.xml -------------------------------------------------------------------------------- /content/api_en/include/static.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/static.xml -------------------------------------------------------------------------------- /content/api_en/include/super.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/super.xml -------------------------------------------------------------------------------- /content/api_en/include/switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/switch.xml -------------------------------------------------------------------------------- /content/api_en/include/this.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/this.xml -------------------------------------------------------------------------------- /content/api_en/include/true.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/true.xml -------------------------------------------------------------------------------- /content/api_en/include/try.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/try.xml -------------------------------------------------------------------------------- /content/api_en/include/void.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/void.xml -------------------------------------------------------------------------------- /content/api_en/include/while.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/include/while.xml -------------------------------------------------------------------------------- /content/api_en/join.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/join.xml -------------------------------------------------------------------------------- /content/api_en/key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/key.xml -------------------------------------------------------------------------------- /content/api_en/keyCode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/keyCode.xml -------------------------------------------------------------------------------- /content/api_en/keyPressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/keyPressed.xml -------------------------------------------------------------------------------- /content/api_en/keyPressed_var.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/keyPressed_var.xml -------------------------------------------------------------------------------- /content/api_en/keyReleased.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/keyReleased.xml -------------------------------------------------------------------------------- /content/api_en/keyTyped.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/keyTyped.xml -------------------------------------------------------------------------------- /content/api_en/launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/launch.xml -------------------------------------------------------------------------------- /content/api_en/lerp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/lerp.xml -------------------------------------------------------------------------------- /content/api_en/lerpColor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/lerpColor.xml -------------------------------------------------------------------------------- /content/api_en/lightFalloff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/lightFalloff.xml -------------------------------------------------------------------------------- /content/api_en/lightSpecular.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/lightSpecular.xml -------------------------------------------------------------------------------- /content/api_en/lights.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/lights.xml -------------------------------------------------------------------------------- /content/api_en/line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/line.xml -------------------------------------------------------------------------------- /content/api_en/loadBytes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/loadBytes.xml -------------------------------------------------------------------------------- /content/api_en/loadFont.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/loadFont.xml -------------------------------------------------------------------------------- /content/api_en/loadImage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/loadImage.xml -------------------------------------------------------------------------------- /content/api_en/loadJSONArray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/loadJSONArray.xml -------------------------------------------------------------------------------- /content/api_en/loadJSONObject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/loadJSONObject.xml -------------------------------------------------------------------------------- /content/api_en/loadPixels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/loadPixels.xml -------------------------------------------------------------------------------- /content/api_en/loadShader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/loadShader.xml -------------------------------------------------------------------------------- /content/api_en/loadShape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/loadShape.xml -------------------------------------------------------------------------------- /content/api_en/loadStrings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/loadStrings.xml -------------------------------------------------------------------------------- /content/api_en/loadTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/loadTable.xml -------------------------------------------------------------------------------- /content/api_en/loadXML.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/loadXML.xml -------------------------------------------------------------------------------- /content/api_en/log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/log.xml -------------------------------------------------------------------------------- /content/api_en/loop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/loop.xml -------------------------------------------------------------------------------- /content/api_en/mag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/mag.xml -------------------------------------------------------------------------------- /content/api_en/map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/map.xml -------------------------------------------------------------------------------- /content/api_en/match.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/match.xml -------------------------------------------------------------------------------- /content/api_en/matchAll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/matchAll.xml -------------------------------------------------------------------------------- /content/api_en/max.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/max.xml -------------------------------------------------------------------------------- /content/api_en/millis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/millis.xml -------------------------------------------------------------------------------- /content/api_en/min.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/min.xml -------------------------------------------------------------------------------- /content/api_en/minute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/minute.xml -------------------------------------------------------------------------------- /content/api_en/modelX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/modelX.xml -------------------------------------------------------------------------------- /content/api_en/modelY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/modelY.xml -------------------------------------------------------------------------------- /content/api_en/modelZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/modelZ.xml -------------------------------------------------------------------------------- /content/api_en/month.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/month.xml -------------------------------------------------------------------------------- /content/api_en/mouseButton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/mouseButton.xml -------------------------------------------------------------------------------- /content/api_en/mouseClicked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/mouseClicked.xml -------------------------------------------------------------------------------- /content/api_en/mouseDragged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/mouseDragged.xml -------------------------------------------------------------------------------- /content/api_en/mouseMoved.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/mouseMoved.xml -------------------------------------------------------------------------------- /content/api_en/mousePressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/mousePressed.xml -------------------------------------------------------------------------------- /content/api_en/mouseReleased.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/mouseReleased.xml -------------------------------------------------------------------------------- /content/api_en/mouseWheel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/mouseWheel.xml -------------------------------------------------------------------------------- /content/api_en/mouseX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/mouseX.xml -------------------------------------------------------------------------------- /content/api_en/mouseY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/mouseY.xml -------------------------------------------------------------------------------- /content/api_en/nf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/nf.xml -------------------------------------------------------------------------------- /content/api_en/nfc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/nfc.xml -------------------------------------------------------------------------------- /content/api_en/nfp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/nfp.xml -------------------------------------------------------------------------------- /content/api_en/nfs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/nfs.xml -------------------------------------------------------------------------------- /content/api_en/noClip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/noClip.xml -------------------------------------------------------------------------------- /content/api_en/noCursor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/noCursor.xml -------------------------------------------------------------------------------- /content/api_en/noFill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/noFill.xml -------------------------------------------------------------------------------- /content/api_en/noLights.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/noLights.xml -------------------------------------------------------------------------------- /content/api_en/noLoop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/noLoop.xml -------------------------------------------------------------------------------- /content/api_en/noSmooth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/noSmooth.xml -------------------------------------------------------------------------------- /content/api_en/noStroke.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/noStroke.xml -------------------------------------------------------------------------------- /content/api_en/noTint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/noTint.xml -------------------------------------------------------------------------------- /content/api_en/noise.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/noise.xml -------------------------------------------------------------------------------- /content/api_en/noiseDetail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/noiseDetail.xml -------------------------------------------------------------------------------- /content/api_en/noiseSeed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/noiseSeed.xml -------------------------------------------------------------------------------- /content/api_en/norm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/norm.xml -------------------------------------------------------------------------------- /content/api_en/normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/normal.xml -------------------------------------------------------------------------------- /content/api_en/ortho.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/ortho.xml -------------------------------------------------------------------------------- /content/api_en/parseJSONArray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/parseJSONArray.xml -------------------------------------------------------------------------------- /content/api_en/parseXML.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/parseXML.xml -------------------------------------------------------------------------------- /content/api_en/perspective.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/perspective.xml -------------------------------------------------------------------------------- /content/api_en/pixelDensity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/pixelDensity.xml -------------------------------------------------------------------------------- /content/api_en/pixelHeight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/pixelHeight.xml -------------------------------------------------------------------------------- /content/api_en/pixelWidth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/pixelWidth.xml -------------------------------------------------------------------------------- /content/api_en/pixels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/pixels.xml -------------------------------------------------------------------------------- /content/api_en/pmouseX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/pmouseX.xml -------------------------------------------------------------------------------- /content/api_en/pmouseY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/pmouseY.xml -------------------------------------------------------------------------------- /content/api_en/point.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/point.xml -------------------------------------------------------------------------------- /content/api_en/pointLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/pointLight.xml -------------------------------------------------------------------------------- /content/api_en/pop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/pop.xml -------------------------------------------------------------------------------- /content/api_en/popMatrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/popMatrix.xml -------------------------------------------------------------------------------- /content/api_en/popStyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/popStyle.xml -------------------------------------------------------------------------------- /content/api_en/pow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/pow.xml -------------------------------------------------------------------------------- /content/api_en/print.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/print.xml -------------------------------------------------------------------------------- /content/api_en/printArray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/printArray.xml -------------------------------------------------------------------------------- /content/api_en/printCamera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/printCamera.xml -------------------------------------------------------------------------------- /content/api_en/printMatrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/printMatrix.xml -------------------------------------------------------------------------------- /content/api_en/println.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/println.xml -------------------------------------------------------------------------------- /content/api_en/push.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/push.xml -------------------------------------------------------------------------------- /content/api_en/pushMatrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/pushMatrix.xml -------------------------------------------------------------------------------- /content/api_en/pushStyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/pushStyle.xml -------------------------------------------------------------------------------- /content/api_en/quad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/quad.xml -------------------------------------------------------------------------------- /content/api_en/radians.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/radians.xml -------------------------------------------------------------------------------- /content/api_en/random.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/random.xml -------------------------------------------------------------------------------- /content/api_en/randomGaussian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/randomGaussian.xml -------------------------------------------------------------------------------- /content/api_en/randomSeed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/randomSeed.xml -------------------------------------------------------------------------------- /content/api_en/rect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/rect.xml -------------------------------------------------------------------------------- /content/api_en/rectMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/rectMode.xml -------------------------------------------------------------------------------- /content/api_en/red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/red.xml -------------------------------------------------------------------------------- /content/api_en/redraw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/redraw.xml -------------------------------------------------------------------------------- /content/api_en/requestImage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/requestImage.xml -------------------------------------------------------------------------------- /content/api_en/resetMatrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/resetMatrix.xml -------------------------------------------------------------------------------- /content/api_en/resetShader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/resetShader.xml -------------------------------------------------------------------------------- /content/api_en/reverse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/reverse.xml -------------------------------------------------------------------------------- /content/api_en/rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/rotate.xml -------------------------------------------------------------------------------- /content/api_en/rotateX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/rotateX.xml -------------------------------------------------------------------------------- /content/api_en/rotateY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/rotateY.xml -------------------------------------------------------------------------------- /content/api_en/rotateZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/rotateZ.xml -------------------------------------------------------------------------------- /content/api_en/round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/round.xml -------------------------------------------------------------------------------- /content/api_en/saturation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/saturation.xml -------------------------------------------------------------------------------- /content/api_en/save.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/save.xml -------------------------------------------------------------------------------- /content/api_en/saveBytes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/saveBytes.xml -------------------------------------------------------------------------------- /content/api_en/saveFrame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/saveFrame.xml -------------------------------------------------------------------------------- /content/api_en/saveJSONArray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/saveJSONArray.xml -------------------------------------------------------------------------------- /content/api_en/saveJSONObject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/saveJSONObject.xml -------------------------------------------------------------------------------- /content/api_en/saveStream.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/saveStream.xml -------------------------------------------------------------------------------- /content/api_en/saveStrings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/saveStrings.xml -------------------------------------------------------------------------------- /content/api_en/saveTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/saveTable.xml -------------------------------------------------------------------------------- /content/api_en/saveXML.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/saveXML.xml -------------------------------------------------------------------------------- /content/api_en/scale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/scale.xml -------------------------------------------------------------------------------- /content/api_en/screenX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/screenX.xml -------------------------------------------------------------------------------- /content/api_en/screenY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/screenY.xml -------------------------------------------------------------------------------- /content/api_en/screenZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/screenZ.xml -------------------------------------------------------------------------------- /content/api_en/second.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/second.xml -------------------------------------------------------------------------------- /content/api_en/selectFolder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/selectFolder.xml -------------------------------------------------------------------------------- /content/api_en/selectInput.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/selectInput.xml -------------------------------------------------------------------------------- /content/api_en/selectOutput.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/selectOutput.xml -------------------------------------------------------------------------------- /content/api_en/set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/set.xml -------------------------------------------------------------------------------- /content/api_en/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/settings.xml -------------------------------------------------------------------------------- /content/api_en/setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/setup.xml -------------------------------------------------------------------------------- /content/api_en/shader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/shader.xml -------------------------------------------------------------------------------- /content/api_en/shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/shape.xml -------------------------------------------------------------------------------- /content/api_en/shapeMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/shapeMode.xml -------------------------------------------------------------------------------- /content/api_en/shearX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/shearX.xml -------------------------------------------------------------------------------- /content/api_en/shearY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/shearY.xml -------------------------------------------------------------------------------- /content/api_en/shininess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/shininess.xml -------------------------------------------------------------------------------- /content/api_en/shorten.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/shorten.xml -------------------------------------------------------------------------------- /content/api_en/sin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/sin.xml -------------------------------------------------------------------------------- /content/api_en/size.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/size.xml -------------------------------------------------------------------------------- /content/api_en/smooth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/smooth.xml -------------------------------------------------------------------------------- /content/api_en/sort.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/sort.xml -------------------------------------------------------------------------------- /content/api_en/specular.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/specular.xml -------------------------------------------------------------------------------- /content/api_en/sphere.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/sphere.xml -------------------------------------------------------------------------------- /content/api_en/sphereDetail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/sphereDetail.xml -------------------------------------------------------------------------------- /content/api_en/splice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/splice.xml -------------------------------------------------------------------------------- /content/api_en/split.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/split.xml -------------------------------------------------------------------------------- /content/api_en/splitTokens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/splitTokens.xml -------------------------------------------------------------------------------- /content/api_en/spotLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/spotLight.xml -------------------------------------------------------------------------------- /content/api_en/sq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/sq.xml -------------------------------------------------------------------------------- /content/api_en/sqrt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/sqrt.xml -------------------------------------------------------------------------------- /content/api_en/square.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/square.xml -------------------------------------------------------------------------------- /content/api_en/stroke.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/stroke.xml -------------------------------------------------------------------------------- /content/api_en/strokeCap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/strokeCap.xml -------------------------------------------------------------------------------- /content/api_en/strokeJoin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/strokeJoin.xml -------------------------------------------------------------------------------- /content/api_en/strokeWeight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/strokeWeight.xml -------------------------------------------------------------------------------- /content/api_en/subset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/subset.xml -------------------------------------------------------------------------------- /content/api_en/tan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/tan.xml -------------------------------------------------------------------------------- /content/api_en/text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/text.xml -------------------------------------------------------------------------------- /content/api_en/textAlign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/textAlign.xml -------------------------------------------------------------------------------- /content/api_en/textAscent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/textAscent.xml -------------------------------------------------------------------------------- /content/api_en/textDescent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/textDescent.xml -------------------------------------------------------------------------------- /content/api_en/textFont.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/textFont.xml -------------------------------------------------------------------------------- /content/api_en/textLeading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/textLeading.xml -------------------------------------------------------------------------------- /content/api_en/textMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/textMode.xml -------------------------------------------------------------------------------- /content/api_en/textSize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/textSize.xml -------------------------------------------------------------------------------- /content/api_en/textWidth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/textWidth.xml -------------------------------------------------------------------------------- /content/api_en/texture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/texture.xml -------------------------------------------------------------------------------- /content/api_en/textureMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/textureMode.xml -------------------------------------------------------------------------------- /content/api_en/textureWrap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/textureWrap.xml -------------------------------------------------------------------------------- /content/api_en/thread.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/thread.xml -------------------------------------------------------------------------------- /content/api_en/tint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/tint.xml -------------------------------------------------------------------------------- /content/api_en/tools/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/tools/index.html -------------------------------------------------------------------------------- /content/api_en/translate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/translate.xml -------------------------------------------------------------------------------- /content/api_en/triangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/triangle.xml -------------------------------------------------------------------------------- /content/api_en/trim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/trim.xml -------------------------------------------------------------------------------- /content/api_en/unbinary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/unbinary.xml -------------------------------------------------------------------------------- /content/api_en/unhex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/unhex.xml -------------------------------------------------------------------------------- /content/api_en/updatePixels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/updatePixels.xml -------------------------------------------------------------------------------- /content/api_en/vertex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/vertex.xml -------------------------------------------------------------------------------- /content/api_en/width.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/width.xml -------------------------------------------------------------------------------- /content/api_en/year.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_en/year.xml -------------------------------------------------------------------------------- /content/api_media/HALF_PI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/HALF_PI.png -------------------------------------------------------------------------------- /content/api_media/PFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/PFont.png -------------------------------------------------------------------------------- /content/api_media/PI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/PI.png -------------------------------------------------------------------------------- /content/api_media/PImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/PImage.png -------------------------------------------------------------------------------- /content/api_media/PImage_set_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/PImage_set_.png -------------------------------------------------------------------------------- /content/api_media/PShape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/PShape.png -------------------------------------------------------------------------------- /content/api_media/QUARTER_PI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/QUARTER_PI.png -------------------------------------------------------------------------------- /content/api_media/TWO_PI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/TWO_PI.png -------------------------------------------------------------------------------- /content/api_media/alpha_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/alpha_.png -------------------------------------------------------------------------------- /content/api_media/ambient_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/ambient_.png -------------------------------------------------------------------------------- /content/api_media/arc_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/arc_.png -------------------------------------------------------------------------------- /content/api_media/arc_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/arc_2.png -------------------------------------------------------------------------------- /content/api_media/arc_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/arc_3.png -------------------------------------------------------------------------------- /content/api_media/arc_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/arc_4.png -------------------------------------------------------------------------------- /content/api_media/bezier_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/bezier_0.png -------------------------------------------------------------------------------- /content/api_media/bezier_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/bezier_1.png -------------------------------------------------------------------------------- /content/api_media/blendColor_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/blendColor_.png -------------------------------------------------------------------------------- /content/api_media/blend_0_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/blend_0_add.png -------------------------------------------------------------------------------- /content/api_media/blue_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/blue_.png -------------------------------------------------------------------------------- /content/api_media/boolean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/boolean.png -------------------------------------------------------------------------------- /content/api_media/box_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/box_0.png -------------------------------------------------------------------------------- /content/api_media/box_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/box_1.png -------------------------------------------------------------------------------- /content/api_media/brightness_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/brightness_.png -------------------------------------------------------------------------------- /content/api_media/camera_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/camera_.png -------------------------------------------------------------------------------- /content/api_media/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/color.png -------------------------------------------------------------------------------- /content/api_media/colorMode_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/colorMode_0.png -------------------------------------------------------------------------------- /content/api_media/colorMode_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/colorMode_1.png -------------------------------------------------------------------------------- /content/api_media/colorMode_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/colorMode_2.png -------------------------------------------------------------------------------- /content/api_media/color_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/color_0.png -------------------------------------------------------------------------------- /content/api_media/color_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/color_1.png -------------------------------------------------------------------------------- /content/api_media/color_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/color_2.png -------------------------------------------------------------------------------- /content/api_media/copy_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/copy_.png -------------------------------------------------------------------------------- /content/api_media/cos_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/cos_.png -------------------------------------------------------------------------------- /content/api_media/curvePoint_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/curvePoint_.png -------------------------------------------------------------------------------- /content/api_media/curve_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/curve_.png -------------------------------------------------------------------------------- /content/api_media/ellipse_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/ellipse_.png -------------------------------------------------------------------------------- /content/api_media/else0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/else0.png -------------------------------------------------------------------------------- /content/api_media/else1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/else1.png -------------------------------------------------------------------------------- /content/api_media/emissive_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/emissive_.png -------------------------------------------------------------------------------- /content/api_media/endCamera_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/endCamera_.png -------------------------------------------------------------------------------- /content/api_media/endShape_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/endShape_.png -------------------------------------------------------------------------------- /content/api_media/fill_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/fill_0.png -------------------------------------------------------------------------------- /content/api_media/fill_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/fill_1.png -------------------------------------------------------------------------------- /content/api_media/for_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/for_0.png -------------------------------------------------------------------------------- /content/api_media/for_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/for_1.png -------------------------------------------------------------------------------- /content/api_media/for_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/for_2.png -------------------------------------------------------------------------------- /content/api_media/for_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/for_3.png -------------------------------------------------------------------------------- /content/api_media/frustum_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/frustum_.png -------------------------------------------------------------------------------- /content/api_media/get_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/get_0.png -------------------------------------------------------------------------------- /content/api_media/get_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/get_1.png -------------------------------------------------------------------------------- /content/api_media/green_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/green_.png -------------------------------------------------------------------------------- /content/api_media/height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/height.png -------------------------------------------------------------------------------- /content/api_media/hue_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/hue_.png -------------------------------------------------------------------------------- /content/api_media/if_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/if_.png -------------------------------------------------------------------------------- /content/api_media/imageMode_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/imageMode_0.png -------------------------------------------------------------------------------- /content/api_media/imageMode_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/imageMode_1.png -------------------------------------------------------------------------------- /content/api_media/imageMode_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/imageMode_2.png -------------------------------------------------------------------------------- /content/api_media/image_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/image_0.png -------------------------------------------------------------------------------- /content/api_media/image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/image_1.png -------------------------------------------------------------------------------- /content/api_media/lerpColor_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/lerpColor_.png -------------------------------------------------------------------------------- /content/api_media/lerp_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/lerp_0.png -------------------------------------------------------------------------------- /content/api_media/lerp_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/lerp_1.png -------------------------------------------------------------------------------- /content/api_media/lights_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/lights_0.png -------------------------------------------------------------------------------- /content/api_media/lights_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/lights_1.png -------------------------------------------------------------------------------- /content/api_media/line_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/line_0.png -------------------------------------------------------------------------------- /content/api_media/line_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/line_1.png -------------------------------------------------------------------------------- /content/api_media/line_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/line_2.png -------------------------------------------------------------------------------- /content/api_media/loadFont_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/loadFont_.png -------------------------------------------------------------------------------- /content/api_media/loadImage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/loadImage_0.png -------------------------------------------------------------------------------- /content/api_media/loadImage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/loadImage_1.png -------------------------------------------------------------------------------- /content/api_media/loadImage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/loadImage_2.png -------------------------------------------------------------------------------- /content/api_media/loadPixels_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/loadPixels_.png -------------------------------------------------------------------------------- /content/api_media/loadShape_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/loadShape_0.png -------------------------------------------------------------------------------- /content/api_media/loadShape_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/loadShape_1.png -------------------------------------------------------------------------------- /content/api_media/logicalAND.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/logicalAND.png -------------------------------------------------------------------------------- /content/api_media/logicalNOT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/logicalNOT.png -------------------------------------------------------------------------------- /content/api_media/logicalOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/logicalOR.png -------------------------------------------------------------------------------- /content/api_media/mag_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/mag_.png -------------------------------------------------------------------------------- /content/api_media/noFill_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/noFill_.png -------------------------------------------------------------------------------- /content/api_media/noSmooth_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/noSmooth_.png -------------------------------------------------------------------------------- /content/api_media/noStroke_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/noStroke_.png -------------------------------------------------------------------------------- /content/api_media/noTint_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/noTint_.png -------------------------------------------------------------------------------- /content/api_media/normal_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/normal_.png -------------------------------------------------------------------------------- /content/api_media/ortho_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/ortho_.png -------------------------------------------------------------------------------- /content/api_media/pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/pixels.png -------------------------------------------------------------------------------- /content/api_media/pointLight_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/pointLight_.png -------------------------------------------------------------------------------- /content/api_media/point_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/point_0.png -------------------------------------------------------------------------------- /content/api_media/point_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/point_1.png -------------------------------------------------------------------------------- /content/api_media/popMatrix_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/popMatrix_.png -------------------------------------------------------------------------------- /content/api_media/popStyle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/popStyle_0.png -------------------------------------------------------------------------------- /content/api_media/popStyle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/popStyle_1.png -------------------------------------------------------------------------------- /content/api_media/pushMatrix_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/pushMatrix_.png -------------------------------------------------------------------------------- /content/api_media/pushStyle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/pushStyle_0.png -------------------------------------------------------------------------------- /content/api_media/pushStyle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/pushStyle_1.png -------------------------------------------------------------------------------- /content/api_media/quad_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/quad_.png -------------------------------------------------------------------------------- /content/api_media/rectMode_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/rectMode_0.png -------------------------------------------------------------------------------- /content/api_media/rectMode_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/rectMode_1.png -------------------------------------------------------------------------------- /content/api_media/rect_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/rect_0.png -------------------------------------------------------------------------------- /content/api_media/rect_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/rect_1.png -------------------------------------------------------------------------------- /content/api_media/rect_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/rect_2.png -------------------------------------------------------------------------------- /content/api_media/red_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/red_.png -------------------------------------------------------------------------------- /content/api_media/rotateX_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/rotateX_0.png -------------------------------------------------------------------------------- /content/api_media/rotateX_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/rotateX_1.png -------------------------------------------------------------------------------- /content/api_media/rotateY_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/rotateY_0.png -------------------------------------------------------------------------------- /content/api_media/rotateY_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/rotateY_1.png -------------------------------------------------------------------------------- /content/api_media/rotateZ_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/rotateZ_0.png -------------------------------------------------------------------------------- /content/api_media/rotateZ_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/rotateZ_1.png -------------------------------------------------------------------------------- /content/api_media/rotate_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/rotate_.png -------------------------------------------------------------------------------- /content/api_media/saturation_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/saturation_.png -------------------------------------------------------------------------------- /content/api_media/scale_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/scale_0.png -------------------------------------------------------------------------------- /content/api_media/scale_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/scale_1.png -------------------------------------------------------------------------------- /content/api_media/scale_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/scale_2.png -------------------------------------------------------------------------------- /content/api_media/set_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/set_0.png -------------------------------------------------------------------------------- /content/api_media/set_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/set_1.png -------------------------------------------------------------------------------- /content/api_media/set_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/set_2.png -------------------------------------------------------------------------------- /content/api_media/shapeMode_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/shapeMode_.png -------------------------------------------------------------------------------- /content/api_media/shape_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/shape_0.png -------------------------------------------------------------------------------- /content/api_media/shape_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/shape_1.png -------------------------------------------------------------------------------- /content/api_media/shearX_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/shearX_.png -------------------------------------------------------------------------------- /content/api_media/shearY_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/shearY_.png -------------------------------------------------------------------------------- /content/api_media/shininess_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/shininess_.png -------------------------------------------------------------------------------- /content/api_media/sin_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/sin_.png -------------------------------------------------------------------------------- /content/api_media/size_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/size_0.png -------------------------------------------------------------------------------- /content/api_media/size_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/size_1.png -------------------------------------------------------------------------------- /content/api_media/size_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/size_2.png -------------------------------------------------------------------------------- /content/api_media/smooth_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/smooth_.png -------------------------------------------------------------------------------- /content/api_media/specular_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/specular_.png -------------------------------------------------------------------------------- /content/api_media/sphere_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/sphere_.png -------------------------------------------------------------------------------- /content/api_media/spotLight_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/spotLight_0.png -------------------------------------------------------------------------------- /content/api_media/spotLight_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/spotLight_1.png -------------------------------------------------------------------------------- /content/api_media/sq_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/sq_.png -------------------------------------------------------------------------------- /content/api_media/sqrt_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/sqrt_.png -------------------------------------------------------------------------------- /content/api_media/strokeCap_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/strokeCap_.png -------------------------------------------------------------------------------- /content/api_media/stroke_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/stroke_0.png -------------------------------------------------------------------------------- /content/api_media/stroke_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/stroke_1.png -------------------------------------------------------------------------------- /content/api_media/tan_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/tan_.png -------------------------------------------------------------------------------- /content/api_media/textAlign_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/textAlign_.png -------------------------------------------------------------------------------- /content/api_media/textAlign_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/textAlign_0.png -------------------------------------------------------------------------------- /content/api_media/textAlign_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/textAlign_1.png -------------------------------------------------------------------------------- /content/api_media/textAscent_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/textAscent_.png -------------------------------------------------------------------------------- /content/api_media/textFont_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/textFont_.png -------------------------------------------------------------------------------- /content/api_media/textSize_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/textSize_.png -------------------------------------------------------------------------------- /content/api_media/textWidth_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/textWidth_.png -------------------------------------------------------------------------------- /content/api_media/text_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/text_0.png -------------------------------------------------------------------------------- /content/api_media/text_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/text_1.png -------------------------------------------------------------------------------- /content/api_media/text_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/text_2.png -------------------------------------------------------------------------------- /content/api_media/texture_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/texture_.png -------------------------------------------------------------------------------- /content/api_media/tint_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/tint_0.png -------------------------------------------------------------------------------- /content/api_media/tint_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/tint_1.png -------------------------------------------------------------------------------- /content/api_media/tint_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/tint_2.png -------------------------------------------------------------------------------- /content/api_media/translate_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/translate_0.png -------------------------------------------------------------------------------- /content/api_media/translate_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/translate_1.png -------------------------------------------------------------------------------- /content/api_media/translate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/translate_2.png -------------------------------------------------------------------------------- /content/api_media/triangle_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/triangle_.png -------------------------------------------------------------------------------- /content/api_media/vertex_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/vertex_0.png -------------------------------------------------------------------------------- /content/api_media/vertex_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/vertex_1.png -------------------------------------------------------------------------------- /content/api_media/vertex_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/vertex_2.png -------------------------------------------------------------------------------- /content/api_media/while_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/while_.png -------------------------------------------------------------------------------- /content/api_media/width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/api_media/width.png -------------------------------------------------------------------------------- /content/curated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated.xml -------------------------------------------------------------------------------- /content/curated_images/000.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/000.gif -------------------------------------------------------------------------------- /content/curated_images/001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/001.gif -------------------------------------------------------------------------------- /content/curated_images/002.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/002.gif -------------------------------------------------------------------------------- /content/curated_images/003.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/003.gif -------------------------------------------------------------------------------- /content/curated_images/004.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/004.gif -------------------------------------------------------------------------------- /content/curated_images/108.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/108.jpg -------------------------------------------------------------------------------- /content/curated_images/aadrl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/aadrl.jpg -------------------------------------------------------------------------------- /content/curated_images/ac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/ac.jpg -------------------------------------------------------------------------------- /content/curated_images/aeolab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/aeolab.jpg -------------------------------------------------------------------------------- /content/curated_images/any.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/any.gif -------------------------------------------------------------------------------- /content/curated_images/avena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/avena.jpg -------------------------------------------------------------------------------- /content/curated_images/base26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/base26.gif -------------------------------------------------------------------------------- /content/curated_images/camp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/camp.jpg -------------------------------------------------------------------------------- /content/curated_images/carden.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/carden.jpg -------------------------------------------------------------------------------- /content/curated_images/cho.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/cho.jpg -------------------------------------------------------------------------------- /content/curated_images/cop15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/cop15.jpg -------------------------------------------------------------------------------- /content/curated_images/d5lv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/d5lv.jpg -------------------------------------------------------------------------------- /content/curated_images/dextro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/dextro.jpg -------------------------------------------------------------------------------- /content/curated_images/digits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/digits.jpg -------------------------------------------------------------------------------- /content/curated_images/discom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/discom.jpg -------------------------------------------------------------------------------- /content/curated_images/europa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/europa.gif -------------------------------------------------------------------------------- /content/curated_images/faa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/faa.jpg -------------------------------------------------------------------------------- /content/curated_images/fluid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/fluid.jpg -------------------------------------------------------------------------------- /content/curated_images/gl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/gl.gif -------------------------------------------------------------------------------- /content/curated_images/grass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/grass.jpg -------------------------------------------------------------------------------- /content/curated_images/haohao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/haohao.jpg -------------------------------------------------------------------------------- /content/curated_images/hehe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/hehe.jpg -------------------------------------------------------------------------------- /content/curated_images/hodgin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/hodgin.jpg -------------------------------------------------------------------------------- /content/curated_images/houck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/houck.jpg -------------------------------------------------------------------------------- /content/curated_images/house.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/house.jpg -------------------------------------------------------------------------------- /content/curated_images/igoe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/igoe.jpg -------------------------------------------------------------------------------- /content/curated_images/itp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/itp.jpg -------------------------------------------------------------------------------- /content/curated_images/itp2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/itp2.jpg -------------------------------------------------------------------------------- /content/curated_images/juani.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/juani.jpg -------------------------------------------------------------------------------- /content/curated_images/juhuu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/juhuu.gif -------------------------------------------------------------------------------- /content/curated_images/katya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/katya.jpg -------------------------------------------------------------------------------- /content/curated_images/koblin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/koblin.jpg -------------------------------------------------------------------------------- /content/curated_images/liquid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/liquid.jpg -------------------------------------------------------------------------------- /content/curated_images/maeve.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/maeve.jpg -------------------------------------------------------------------------------- /content/curated_images/mit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/mit.jpg -------------------------------------------------------------------------------- /content/curated_images/moovl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/moovl.gif -------------------------------------------------------------------------------- /content/curated_images/mos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/mos.gif -------------------------------------------------------------------------------- /content/curated_images/mtv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/mtv.gif -------------------------------------------------------------------------------- /content/curated_images/mud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/mud.jpg -------------------------------------------------------------------------------- /content/curated_images/muon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/muon.jpg -------------------------------------------------------------------------------- /content/curated_images/muth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/muth.jpg -------------------------------------------------------------------------------- /content/curated_images/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/mz.png -------------------------------------------------------------------------------- /content/curated_images/npz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/npz.gif -------------------------------------------------------------------------------- /content/curated_images/nyx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/nyx.jpg -------------------------------------------------------------------------------- /content/curated_images/oasis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/oasis.gif -------------------------------------------------------------------------------- /content/curated_images/ortho.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/ortho.gif -------------------------------------------------------------------------------- /content/curated_images/papa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/papa.jpg -------------------------------------------------------------------------------- /content/curated_images/ping.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/ping.jpg -------------------------------------------------------------------------------- /content/curated_images/pixtil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/pixtil.jpg -------------------------------------------------------------------------------- /content/curated_images/pond.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/pond.gif -------------------------------------------------------------------------------- /content/curated_images/pour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/pour.jpg -------------------------------------------------------------------------------- /content/curated_images/proto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/proto.jpg -------------------------------------------------------------------------------- /content/curated_images/random.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/random.jpg -------------------------------------------------------------------------------- /content/curated_images/rc4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/rc4.jpg -------------------------------------------------------------------------------- /content/curated_images/rc4@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/rc4@2x.jpg -------------------------------------------------------------------------------- /content/curated_images/redux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/redux.jpg -------------------------------------------------------------------------------- /content/curated_images/roots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/roots.jpg -------------------------------------------------------------------------------- /content/curated_images/sheep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/sheep.gif -------------------------------------------------------------------------------- /content/curated_images/silenc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/silenc.png -------------------------------------------------------------------------------- /content/curated_images/silica.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/silica.jpg -------------------------------------------------------------------------------- /content/curated_images/simdiv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/simdiv.jpg -------------------------------------------------------------------------------- /content/curated_images/slub.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/slub.gif -------------------------------------------------------------------------------- /content/curated_images/spies.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/spies.gif -------------------------------------------------------------------------------- /content/curated_images/strata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/strata.jpg -------------------------------------------------------------------------------- /content/curated_images/suzung.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/suzung.jpg -------------------------------------------------------------------------------- /content/curated_images/taobot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/taobot.jpg -------------------------------------------------------------------------------- /content/curated_images/terre.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/terre.jpg -------------------------------------------------------------------------------- /content/curated_images/tokyo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/tokyo.jpg -------------------------------------------------------------------------------- /content/curated_images/traces.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/traces.jpg -------------------------------------------------------------------------------- /content/curated_images/ttc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/ttc.gif -------------------------------------------------------------------------------- /content/curated_images/vj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/vj.jpg -------------------------------------------------------------------------------- /content/curated_images/volume.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/volume.jpg -------------------------------------------------------------------------------- /content/curated_images/wave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/wave.gif -------------------------------------------------------------------------------- /content/curated_images/wf3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/wf3.png -------------------------------------------------------------------------------- /content/curated_images/wiggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/wiggle.gif -------------------------------------------------------------------------------- /content/curated_images/xmas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/xmas.gif -------------------------------------------------------------------------------- /content/curated_images/yahoo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/yahoo.jpg -------------------------------------------------------------------------------- /content/curated_images/ymyi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/curated_images/ymyi.jpg -------------------------------------------------------------------------------- /content/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/examples/README.md -------------------------------------------------------------------------------- /content/examples_basics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/examples_basics.xml -------------------------------------------------------------------------------- /content/examples_p5/testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/examples_p5/testing.html -------------------------------------------------------------------------------- /content/examples_topics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/examples_topics.xml -------------------------------------------------------------------------------- /content/gswp_2e/examples/03_Draw/Ex_03_01/Ex_03_01.pde: -------------------------------------------------------------------------------- 1 | size(800, 600); -------------------------------------------------------------------------------- /content/gswp_2e/examples/08_Motion/Ex_08_01/Ex_08_01.pde: -------------------------------------------------------------------------------- 1 | void draw() { 2 | println(frameRate); 3 | } 4 | 5 | -------------------------------------------------------------------------------- /content/handbook_2e/examples/03 Draw/Ex_28/Ex_28.pde: -------------------------------------------------------------------------------- 1 | background(0); 2 | -------------------------------------------------------------------------------- /content/handbook_2e/examples/03 Draw/Ex_29/Ex_29.pde: -------------------------------------------------------------------------------- 1 | background(124); 2 | -------------------------------------------------------------------------------- /content/handbook_2e/examples/03 Draw/Ex_30/Ex_30.pde: -------------------------------------------------------------------------------- 1 | background(230); 2 | -------------------------------------------------------------------------------- /content/handbook_2e/examples/04 Color/Ex_01/Ex_01.pde: -------------------------------------------------------------------------------- 1 | background(242, 204, 47); 2 | -------------------------------------------------------------------------------- /content/handbook_2e/examples/04 Color/Ex_02/Ex_02.pde: -------------------------------------------------------------------------------- 1 | background(174, 221, 60); 2 | -------------------------------------------------------------------------------- /content/handbook_2e/examples/20 Calculate/Ex_17/Ex_17.pde: -------------------------------------------------------------------------------- 1 | float w = round(2.1); // Assign 2.0 to w 2 | -------------------------------------------------------------------------------- /content/handbook_2e/examples/25 Objects/Ex_13/EggRing.pde: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/static/books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/static/books.html -------------------------------------------------------------------------------- /content/static/copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/static/copyright.html -------------------------------------------------------------------------------- /content/static/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/static/download.html -------------------------------------------------------------------------------- /content/static/feeds/github.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/static/feeds/github.php -------------------------------------------------------------------------------- /content/static/feeds/twitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/static/feeds/twitter.php -------------------------------------------------------------------------------- /content/static/handbook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/static/handbook.html -------------------------------------------------------------------------------- /content/static/learning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/static/learning.html -------------------------------------------------------------------------------- /content/static/media.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/static/media.zip -------------------------------------------------------------------------------- /content/static/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/static/overview.html -------------------------------------------------------------------------------- /content/static/people.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/static/people.html -------------------------------------------------------------------------------- /content/static/shop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/static/shop/index.html -------------------------------------------------------------------------------- /content/static/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/static/support.html -------------------------------------------------------------------------------- /content/template.ref.item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/content/template.ref.item.xml -------------------------------------------------------------------------------- /contrib_generate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/contrib_generate/README.md -------------------------------------------------------------------------------- /contrib_generate/broken.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/contrib_generate/broken.conf -------------------------------------------------------------------------------- /contrib_generate/legacy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/contrib_generate/legacy.txt -------------------------------------------------------------------------------- /contrib_generate/skipped.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/contrib_generate/skipped.conf -------------------------------------------------------------------------------- /contrib_generate/sources.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/contrib_generate/sources.conf -------------------------------------------------------------------------------- /css/changes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/css/changes.css -------------------------------------------------------------------------------- /css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/css/forms.css -------------------------------------------------------------------------------- /css/processing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/css/processing.css -------------------------------------------------------------------------------- /css/processing_beta.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/css/processing_beta.css -------------------------------------------------------------------------------- /css/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/css/radio.png -------------------------------------------------------------------------------- /css/radio_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/css/radio_checked.png -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/css/style.css -------------------------------------------------------------------------------- /download/install-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/download/install-arm.sh -------------------------------------------------------------------------------- /download/latest.txt: -------------------------------------------------------------------------------- 1 | 1276 2 | 3 | -------------------------------------------------------------------------------- /exhibition/works/000/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/exhibition/works/000/code.html -------------------------------------------------------------------------------- /exhibition/works/002/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/exhibition/works/002/code.html -------------------------------------------------------------------------------- /exhibition/works/003/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/exhibition/works/003/code.html -------------------------------------------------------------------------------- /exhibition/works/004/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/exhibition/works/004/code.html -------------------------------------------------------------------------------- /exhibition/works/d5lv/D5LV.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/exhibition/works/d5lv/D5LV.jar -------------------------------------------------------------------------------- /exhibition/works/d5lv/D5LV.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/exhibition/works/d5lv/D5LV.pde -------------------------------------------------------------------------------- /exhibition/works/moovl/moovl.pde: -------------------------------------------------------------------------------- 1 | There is no code available for this exhibition... -------------------------------------------------------------------------------- /exhibition/works/pond/pond.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/exhibition/works/pond/pond.jar -------------------------------------------------------------------------------- /exhibition/works/pond/pond.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/exhibition/works/pond/pond.pde -------------------------------------------------------------------------------- /exhibition/works/ttc/ttc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/exhibition/works/ttc/ttc.java -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/favicon.ico -------------------------------------------------------------------------------- /generate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/README.md -------------------------------------------------------------------------------- /generate/_old/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/_old/about.php -------------------------------------------------------------------------------- /generate/_old/reference2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/_old/reference2.php -------------------------------------------------------------------------------- /generate/_old/svn_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/_old/svn_update.php -------------------------------------------------------------------------------- /generate/_old/test.domit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/_old/test.domit.php -------------------------------------------------------------------------------- /generate/_old/test.ref.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/_old/test.ref.php -------------------------------------------------------------------------------- /generate/_old/test.xpath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/_old/test.xpath.php -------------------------------------------------------------------------------- /generate/contributions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/contributions.php -------------------------------------------------------------------------------- /generate/cover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/cover.php -------------------------------------------------------------------------------- /generate/css/generate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/css/generate.css -------------------------------------------------------------------------------- /generate/domit/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/domit/changelog.txt -------------------------------------------------------------------------------- /generate/domit/docs/html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/domit/docs/html.css -------------------------------------------------------------------------------- /generate/domit/domitBanner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/domit/domitBanner.gif -------------------------------------------------------------------------------- /generate/domit/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/domit/license.txt -------------------------------------------------------------------------------- /generate/environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/environment.php -------------------------------------------------------------------------------- /generate/environment_local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/environment_local.php -------------------------------------------------------------------------------- /generate/examples.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/examples.php -------------------------------------------------------------------------------- /generate/exhibition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/exhibition.php -------------------------------------------------------------------------------- /generate/foundation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/foundation.php -------------------------------------------------------------------------------- /generate/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/index.php -------------------------------------------------------------------------------- /generate/keywords_base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/keywords_base.txt -------------------------------------------------------------------------------- /generate/keywords_create.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/keywords_create.cgi -------------------------------------------------------------------------------- /generate/lib/Curated.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/lib/Curated.class.php -------------------------------------------------------------------------------- /generate/lib/Example.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/lib/Example.class.php -------------------------------------------------------------------------------- /generate/lib/Ref.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/lib/Ref.class.php -------------------------------------------------------------------------------- /generate/lib/XPath.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/lib/XPath.class.php -------------------------------------------------------------------------------- /generate/lib/files.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/lib/files.inc.php -------------------------------------------------------------------------------- /generate/lib/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/lib/functions.inc.php -------------------------------------------------------------------------------- /generate/lib/xhtml.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/lib/xhtml.class.php -------------------------------------------------------------------------------- /generate/libraries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/libraries.php -------------------------------------------------------------------------------- /generate/libraries_local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/libraries_local.php -------------------------------------------------------------------------------- /generate/pull_latest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/pull_latest.php -------------------------------------------------------------------------------- /generate/reference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/reference.php -------------------------------------------------------------------------------- /generate/staticpages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/staticpages.php -------------------------------------------------------------------------------- /generate/staticpages_local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/staticpages_local.php -------------------------------------------------------------------------------- /generate/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/template.php -------------------------------------------------------------------------------- /generate/tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/tools.php -------------------------------------------------------------------------------- /generate/tools_local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/tools_local.php -------------------------------------------------------------------------------- /generate/tutorials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/generate/tutorials.php -------------------------------------------------------------------------------- /img/1pix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/1pix.gif -------------------------------------------------------------------------------- /img/back_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/back_off.gif -------------------------------------------------------------------------------- /img/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/cc.png -------------------------------------------------------------------------------- /img/drawing-with-code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/drawing-with-code.jpg -------------------------------------------------------------------------------- /img/feed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/feed.gif -------------------------------------------------------------------------------- /img/foundation-head-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/foundation-head-test.png -------------------------------------------------------------------------------- /img/header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/header.gif -------------------------------------------------------------------------------- /img/learning/books/opencv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/learning/books/opencv.jpg -------------------------------------------------------------------------------- /img/nav_bottomarrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/nav_bottomarrow.gif -------------------------------------------------------------------------------- /img/next_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/next_off.gif -------------------------------------------------------------------------------- /img/pcd17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/pcd17.png -------------------------------------------------------------------------------- /img/processing-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/processing-logo.png -------------------------------------------------------------------------------- /img/processing-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/processing-logo.svg -------------------------------------------------------------------------------- /img/processing-old.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/processing-old.ico -------------------------------------------------------------------------------- /img/processing-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/processing-web.png -------------------------------------------------------------------------------- /img/processing2-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/processing2-logo.jpg -------------------------------------------------------------------------------- /img/processing3-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/processing3-logo.png -------------------------------------------------------------------------------- /img/processing_blog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/processing_blog.gif -------------------------------------------------------------------------------- /img/processing_feed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/processing_feed.gif -------------------------------------------------------------------------------- /img/processing_forum_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/processing_forum_back.jpg -------------------------------------------------------------------------------- /img/processing_forum_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/processing_forum_logo.png -------------------------------------------------------------------------------- /img/raquo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/raquo.png -------------------------------------------------------------------------------- /img/raquo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/raquo.svg -------------------------------------------------------------------------------- /img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/search.png -------------------------------------------------------------------------------- /img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/search.svg -------------------------------------------------------------------------------- /img/search_button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/search_button.gif -------------------------------------------------------------------------------- /img/select_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/select_arrow.gif -------------------------------------------------------------------------------- /img/up_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/img/up_arrow.gif -------------------------------------------------------------------------------- /java_generate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/java_generate/README.md -------------------------------------------------------------------------------- /java_generate/templates/method.parameter.partial.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java_generate/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/java_generate/utils.py -------------------------------------------------------------------------------- /javascript/MM_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/javascript/MM_functions.js -------------------------------------------------------------------------------- /javascript/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/javascript/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /javascript/mode-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/javascript/mode-select.js -------------------------------------------------------------------------------- /javascript/p5.dom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/javascript/p5.dom.min.js -------------------------------------------------------------------------------- /javascript/p5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/javascript/p5.min.js -------------------------------------------------------------------------------- /javascript/processing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/javascript/processing.js -------------------------------------------------------------------------------- /javascript/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/javascript/prototype.js -------------------------------------------------------------------------------- /javascript/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/javascript/site.js -------------------------------------------------------------------------------- /javascript/slideshow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/javascript/slideshow.js -------------------------------------------------------------------------------- /learning/books/media.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/learning/books/media.zip -------------------------------------------------------------------------------- /subscribe/AES.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/subscribe/AES.class.php -------------------------------------------------------------------------------- /subscribe/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/subscribe/index.php -------------------------------------------------------------------------------- /templates/rss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/templates/rss.php -------------------------------------------------------------------------------- /templates/rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/templates/rss.xml -------------------------------------------------------------------------------- /templates/template.cover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/templates/template.cover.html -------------------------------------------------------------------------------- /templates/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/templates/template.html -------------------------------------------------------------------------------- /templates/template.local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/templates/template.local.html -------------------------------------------------------------------------------- /templates/template.nav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/templates/template.nav.php -------------------------------------------------------------------------------- /templates/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/templates/template.php -------------------------------------------------------------------------------- /todo-web.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/todo-web.txt -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-docs/HEAD/todo.txt --------------------------------------------------------------------------------